Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Latex in Plot3d

var('x,y,z')
U(x,y)=x^.5*y^.5
levels=[0.25,.5,0.75,1,1.25,1.5,1.75,2]
epsilon=0.01
p=plot3d(f(x,y),(x,0,2),(y,0,2),color='lightgreen',opacity=0.7,frame=False)
for h in levels:
    p+=implicit_plot3d(U(x,y)==h,(x,0,2),(y,0,2),(z,h,h+epsilon),color='red')
    p+=implicit_plot3d(U(x,y)==h,(x,0,2),(y,0,2),(z,0,0.01),color='red')

from sage.manifolds.utilities import set_axes_labels
p+= arrow3d((0, 0, 0), (2.2, 0, 0), color='green')
p+= arrow3d((0, 0, 0), (0, 2.2, 0), color='green')
p+= arrow3d((0, 0, 0), (0, 0, 2.2), color='green')
p+= text3d(r"U(x,y) = x^.5 y^.5", (1, 1, 2.5), color=(0.5, 0, 0))
p+= set_axes_labels(p, r"x",r"y",r"z", color='lightgreen', fontweight='bold')
show(p,viewer='threejs',frame=False)

This would be nice if only the text and label have been implemented in 3D. As I could see the track has been open in 2020. Is it implemented now (https://github.com/sagemath/sage/issues/30226) ?

Latex in Plot3d

var('x,y,z') U(x,y)=x^.5*y^.5 levels=[0.25,.5,0.75,1,1.25,1.5,1.75,2] epsilon=0.01 p=plot3d(f(x,y),(x,0,2),(y,0,2),color='lightgreen',opacity=0.7,frame=False) p=plot3d(U(x,y),(x,0,2),(y,0,2),color='lightgreen',opacity=0.7,frame=False) for h in levels: p+=implicit_plot3d(U(x,y)==h,(x,0,2),(y,0,2),(z,h,h+epsilon),color='red') p+=implicit_plot3d(U(x,y)==h,(x,0,2),(y,0,2),(z,0,0.01),color='red') p+=implicit_plot3d(U(x,y)==h,(x,0,2),(y,0,2),(z,0,0.01),color='red')

from sage.manifolds.utilities import set_axes_labels
p+= arrow3d((0, 0, 0), (2.2, 0, 0), color='green')
p+= arrow3d((0, 0, 0), (0, 2.2, 0), color='green')
p+= arrow3d((0, 0, 0), (0, 0, 2.2), color='green')
p+= text3d(r"U(x,y) = x^.5 y^.5", (1, 1, 2.5), color=(0.5, 0, 0))
p+= set_axes_labels(p, r"x",r"y",r"z", color='lightgreen', fontweight='bold')
show(p,viewer='threejs',frame=False)

This would be nice if only the text and label have been implemented in 3D. As I could see the track has been open in 2020. Is it implemented now (https://github.com/sagemath/sage/issues/30226) ?