From: Matthias B. <mb...@us...> - 2004-07-29 20:57:47
|
Update of /cvsroot/pyode/pyode/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26338 Modified Files: ode.pyx trimesh.pyx Log Message: Forgot to save the files...ahem... (which contained a little bit of additional comments) Index: ode.pyx =================================================================== RCS file: /cvsroot/pyode/pyode/src/ode.pyx,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ode.pyx 29 Jul 2004 20:17:13 -0000 1.6 --- ode.pyx 29 Jul 2004 20:57:38 -0000 1.7 *************** *** 145,150 **** include "geoms.pyx" ! # Include the trimesh switch file that either includes the real trimesh ! # wrapper or a dummy wrapper (if trimesh support is not available/desired) include "_trimesh_switch.pyx" --- 145,151 ---- include "geoms.pyx" ! # Include the generated trimesh switch file that either includes the real ! # trimesh wrapper (trimesh.pyx/trimeshdata.pyx) or a dummy wrapper ! # (trimesh_dummy.pyx) if trimesh support is not available/desired. include "_trimesh_switch.pyx" Index: trimesh.pyx =================================================================== RCS file: /cvsroot/pyode/pyode/src/trimesh.pyx,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** trimesh.pyx 29 Jul 2004 20:17:13 -0000 1.1 --- trimesh.pyx 29 Jul 2004 20:57:38 -0000 1.2 *************** *** 1,4 **** --- 1,7 ---- # Trimesh + # This file is included by _trimesh_switch.pyx if the variable + # TRIMESH_SUPPORT was set to True in the setup script. + # GeomTriMesh cdef class GeomTriMesh(GeomObject): |