A new version of VRML Export is available. The face primative can now be
exported to VRML.
Find the new version at http://www.andrew.cmu.edu/~mzk/vrmlexport/
Apparantley, the faces.__class__ attribute has yet to be defined so (until
VPython is updated) after you define a faces object also define its
__class__:
object = faces(...)
object.__class__ = "faces"
This is neccesary so VRML export correctly export the face.
-Michael
|