The set of interactive pages with the following structure:
Example of Computations $\mathbb{\implies}$ Your Experiments $\mathbb{\implies}$ Python Modules $\mathbb{\implies}$ Other Languages
Click the $\mathbb{activate}$ button below to display an interactive example.
@interact
def _(x=[1..10],y=[1..10],z=[1..10]):
from sage.plot.plot3d.plot3d import axes
var('u'); f=(.75*cos(u),.75*sin(u))
c=colormaps.jet(8*(x+y+z))[:3]; a=axes(11,.5);
r=revolution_plot3d(
f,(u,0,2*pi),color=c,mesh=True,plot_points=10,opacity=.2)
t=text3d('(%.1f,%.1f,%.1f)'%(x,y,z),
(x,y,z+2),color=c)
(a+r.translate(x,y,z)+t).show()
Type your own SageMath code lines below and click the $\mathbb{evaluate}$ button.
This code cell was evaluated automatically.
<script src='https://d3js.org/d3.v4.min.js'></script> was added in the page head.