{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import k3d\n", "import numpy as np\n", "from ipywidgets import interact, IntSlider\n", "\n", "width = height = length = 3\n", "\n", "color_map = (0xFF0000, 0x00FF00, 0x0000FF)\n", "voxels = np.ones(width * height * length, dtype=np.uint8).reshape((length, height, width))\n", "obj = k3d.voxels(voxels, color_map)\n", "\n", "plot = k3d.plot(voxel_paint_color=2)\n", "plot += obj\n", "\n", "@interact(color=IntSlider(value=plot.voxel_paint_color, min=0, max=len(color_map)))\n", "def color(color):\n", " plot.voxel_paint_color = color\n", "\n", "plot.display()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "obj.voxels.flatten() # initial data" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Edit object (add/remove some voxels)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "obj.fetch_data('voxels') # this is an async operation" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "obj.voxels.flatten() # updated data" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "obj.visible = False" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "obj.visible = True" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.5" } }, "nbformat": 4, "nbformat_minor": 1 }