Hi, I've been looking at the TriMesh API. Expected use is something like:
d = ode.TriMeshData()
d.build(verts, faces)
g = ode.GeomTriMesh(d, space)
It seems to me it would be more pythonic to use something like:
d = ode.TriMeshData(verts, faces)
g = ode.GeomTriMesh(d, space)
Why is it this way? Just to mime the ODE API better?
Ethan
signature.asc
Description: OpenPGP digital signature
------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/
_______________________________________________ Pyode-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pyode-user
