Hi all,

I'm introspecting 3D plots right now to fix some issues we have with sdl
export. I notice the following:

sage: d = dodecahedron()
sage: type(d)
<type 'sage.plot.plot3d.index_face_set.IndexFaceSet'>
sage: p = Polyhedron([(0,0,0), (1,0,0), (0,1,0), (0,0,1)])
sage: pp = p.plot()
sage: type(pp)
<class 'sage.plot.plot3d.base.Graphics3dGroup'>


both d and pp show in 3d in jmol but as you can see, they're not the same
type. We noticed that IndexFaceSet (whatever this is) converts directly
into sdl but NOT Graphcs3dGroup. Our goal is to have a direct SDL export
for polyhedrons and we're trying to understand what are those two types and
what is the best way to proceed.

Does anyone know something about it?

Best

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to