#!/usr/bin/env python # coding: utf-8 # In[ ]: import k3d # In[ ]: plot = k3d.plot(axes=['\\alpha', '\\beta', '\\gamma']) plot.display() # In[ ]: plot.axes = ['x', 'y', 'z'] # In[ ]: plot.axes_helper = 0 # In[ ]: plot.axes_helper = 1 # In[ ]: from ipywidgets import interact import ipywidgets as widgets @interact(size=widgets.FloatSlider(min=0.0, max=200, value=1.0)) def g(size): plot.axes_helper=size # In[ ]: