#!/usr/bin/env python # coding: utf-8 # In[ ]: import k3d # In[ ]: plot = k3d.plot(axes=['\\alpha', '\\beta', '\\gamma']) plot.display() # In[ ]: plot.axes = ['x', '\int^x y(x\')dx\'', '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[ ]: plot.axes_helper = 3 # In[ ]: plt = k3d.text('Ale') plt # In[ ]: plt.text = '\int_0^2 n y+ \sin x' # In[ ]: