Browse Source

Fix empty contact geoms with OdeUtil.collide

rdb 16 years ago
parent
commit
94dd3b9624
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/ode/odeContactGeom.cxx

+ 1 - 1
panda/src/ode/odeContactGeom.cxx

@@ -31,7 +31,7 @@ OdeContactGeom(const OdeContactGeom &copy) :
 OdeContactGeom::
 OdeContactGeom(const dContactGeom &copy) : 
   _contact_geom() {
-  *this = _contact_geom;
+  *this = copy;
 }
 
 OdeContactGeom::