From f1a99466e74cfe1e0fdb1572786dc1ed93b74599 Mon Sep 17 00:00:00 2001 From: Redmond Urbino Date: Wed, 9 Apr 2008 22:44:58 +0000 Subject: [PATCH] add get_infinity --- panda/src/ode/odeUtil.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/panda/src/ode/odeUtil.h b/panda/src/ode/odeUtil.h index 8b3fdb929e..6eff97ca06 100755 --- a/panda/src/ode/odeUtil.h +++ b/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