From: Ethan Glasser-C. <gla...@us...> - 2010-02-02 03:46:06
|
Update of /cvsroot/pyode/pyode/src In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv15114/src Modified Files: geoms.pyx Log Message: GeomRay is placeable Index: geoms.pyx =================================================================== RCS file: /cvsroot/pyode/pyode/src/geoms.pyx,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** geoms.pyx 24 Dec 2008 03:33:56 -0000 1.15 --- geoms.pyx 2 Feb 2010 03:45:56 -0000 1.16 *************** *** 20,23 **** --- 20,27 ---- ###################################################################### + # The list of geom classes supported in ODE, and whether or not they + # are placeable, is at + # http://opende.sourceforge.net/wiki/index.php/Manual_%28Collision_Detection%29 + # GeomSphere cdef class GeomSphere(GeomObject): *************** *** 362,365 **** --- 366,372 ---- return id + def placeable(self): + return True + def setLength(self, rlen): '''setLength(rlen) |