Currently in sage 3D I can graph 3D plots in the same output, but not
side by side.

p1=plot3d(lambda x, y: x^2 + y^2, (-2,2), (-2,2))
p2=plot3d(lambda x, y: x^2 - y^2, (-2,2), (-2,2))
(p1).show(viewer="tachyon")
(p2).show(viewer="tachyon")

With 2d plots, this can be done using graphics array, but it seems
that 3d plots are not supported.

ga=graphics_array([p1,p2])
Traceback (click to the left of this block for traceback)
...
TypeError: every element of array must be a Graphics object

How can 3d plots be displayed side by side? Also, is it possible to
have jmol plots displayed in this way?

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org

Reply via email to