plotly could be another simple way to make an interactive 3d image, for 
example

```
import plotly.plotly as py
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, 
iplot,iplot_mpl
import plotly.graph_objs as go
init_notebook_mode()

import numpy as np

r=np.linspace(0,3,101)
t=np.linspace(0,2*np.pi,101)

r,t=np.meshgrid(r,t)
x=r*np.cos(t)
y=r*np.sin(t)

f= np.sqrt(x**2+y**2)

surface = go.Surface(x=x, y=y, z=f,opacity=0.9)
data = [surface]

fig = go.Figure(data=data)
iplot(fig)

```

More examples, could be found in 

 http://localhost:8888/tree/Documents/2016/Calculus

Hope this do help to you

cch

-- 
You received this message because you are subscribed to the Google Groups 
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jupyter/cb659457-136d-4bce-a37b-fc936f667319%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to