3d graphics not displayed
I am new to Sage. I use SageMath 8.6 on Windows 10. 2D plotting works, but not 3d.
For example this produced no graphics but just the:
πΆππππππππΉππΎπππππ
sage: x, y = var('x,y')
sage: g = plot3d(x^2 + y^2, (x,-2,2), (y,-2,2))
sage: show(g)
πΆππππππππΉππΎπππππ
I use Chrome.
With the suggested option:
sage: show(g,figsize=8, viewer="threejs", frame=False,axes=True)
it works now!
It works also with:
sage: show(g,figsize=8, viewer="threejs", axes=True)
And with:
sage: show(g,figsize=8, viewer="threejs")
It looks like viewer option should be there for 3D to work on windows 10 with Chrome.
SageMath is great! With Python it is much more friendlier than Mathematica.