{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# K3D Examples\n", "Try one of the examples below!" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/markdown": [ "- 01 getting started\n", "- 02 adding objects to plot\n", "- 03 plotting a single object\n", "- 04 gui basics\n", "- 05 plot options\n", "- Sine Gordon\n", "- camera manipulation-Copy1\n", "- camera manipulation\n", "- line\n", "- marching cubes\n", "- mesh\n", "- point cloud scaner\n", "- points\n", "- screenshot\n", "- sierpinski3d\n", "- stl\n", "- surface\n", "- text\n", "- text2d\n", "- texture\n", "- texture text\n", "- vector\n", "- vector animation k3d\n", "- vector field 2d\n", "- vector field 3d\n", "- voxel edit\n", "- voxels\n", "- vtk\n", "- vtk2" ], "text/plain": [ "" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# just generating the list here, nothing to see...\n", "from IPython.display import Markdown\n", "from glob import glob\n", "\n", "Markdown(\"\\n\".join([\n", " \"- {0}\".format(x[9:-6].replace(\"_\", \" \"), x)\n", " for x in sorted(glob(\"examples/*.ipynb\"))\n", "]))" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/markdown": [ "### Examples presented during Sage Days 74\n", "- SageDays74/Lorenz system\n", "- SageDays74/Molecular Dynamics visualization-demo\n", "- SageDays74/implicit plot3d interactive\n", "- SageDays74/line animation demo\n", "- SageDays74/marching cubes level interact\n", "- SageDays74/surface interact" ], "text/plain": [ "" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "Markdown(\"### Examples presented during Sage Days 74\\n\"+\"\\n\".join([\n", " \"- {0}\".format(x[9:-6].replace(\"_\", \" \"), x)\n", " for x in sorted(glob(\"examples/SageDays74/*.ipynb\"))\n", "]))" ] }, { "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 }