Browse Source

add get_infinity

Redmond Urbino 17 years ago
parent
commit
f1a99466e7
1 changed files with 3 additions and 0 deletions
  1. 3 0
      panda/src/ode/odeUtil.h

+ 3 - 0
panda/src/ode/odeUtil.h

@@ -46,6 +46,9 @@ PUBLISHED:
 	                             const int joint_type);
 
   static dReal OC_infinity;  
+
+  // RAU we can't access OC_infinity as constants are not exposed in python
+  static dReal get_infinity() {return OC_infinity;};
 };
 
 #endif