From: Timothy S. <pe...@us...> - 2004-07-24 11:53:47
|
Update of /cvsroot/pyode/pyode/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15552/src Modified Files: declarations.pyx trimeshdata.pyx Log Message: Changed dGeomTriMeshDataBuildSingle to dGeomTriMeshDataBuildSingle1. Index: trimeshdata.pyx =================================================================== RCS file: /cvsroot/pyode/pyode/src/trimeshdata.pyx,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** trimeshdata.pyx 19 Jul 2004 15:02:05 -0000 1.1 --- trimeshdata.pyx 24 Jul 2004 11:53:38 -0000 1.2 *************** *** 66,68 **** # Pass the data to ODE # dGeomTriMeshDataBuildSimple(self.tmdid, self.vertex_buffer, numverts, self.face_buffer, numfaces) ! dGeomTriMeshDataBuildSingle(self.tmdid, self.vertex_buffer, 3*sizeof(dReal), numverts, self.face_buffer, numfaces, 3*sizeof(int), NULL) --- 66,68 ---- # Pass the data to ODE # dGeomTriMeshDataBuildSimple(self.tmdid, self.vertex_buffer, numverts, self.face_buffer, numfaces) ! dGeomTriMeshDataBuildSingle1(self.tmdid, self.vertex_buffer, 3*sizeof(dReal), numverts, self.face_buffer, numfaces, 3*sizeof(int), NULL) Index: declarations.pyx =================================================================== RCS file: /cvsroot/pyode/pyode/src/declarations.pyx,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** declarations.pyx 19 Jul 2004 14:57:40 -0000 1.4 --- declarations.pyx 24 Jul 2004 11:53:38 -0000 1.5 *************** *** 353,357 **** dTriMeshDataID dGeomTriMeshDataCreate() void dGeomTriMeshDataDestroy(dTriMeshDataID g) ! void dGeomTriMeshDataBuildSingle (dTriMeshDataID g, void* Vertices, int VertexStride, int VertexCount, void* Indices, int IndexCount, --- 353,357 ---- dTriMeshDataID dGeomTriMeshDataCreate() void dGeomTriMeshDataDestroy(dTriMeshDataID g) ! void dGeomTriMeshDataBuildSingle1 (dTriMeshDataID g, void* Vertices, int VertexStride, int VertexCount, void* Indices, int IndexCount, |