]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/RigidBody.hh
refactoring the scene class
[chaz/yoink] / src / Moof / RigidBody.hh
index 11c635420b42b16349c30b38c094dddc999d86ee..501f7c9bdbc07279feda2334c995bf3556c1e47b 100644 (file)
@@ -44,7 +44,7 @@ template <typename T>
 class RigidBody
 {
 public:
-       inline virtual ~RigidBody() {}
+       virtual ~RigidBody() {}
 
        virtual void update(Scalar t, Scalar dt)
        {
@@ -52,7 +52,7 @@ public:
                currentState_.integrate(t, dt);
        }
 
-       inline T getInterpolatedState(Scalar alpha) const
+       T getInterpolatedState(Scalar alpha) const
        {
                return currentState_.interpolate(alpha, prevState_);
        }
This page took 0.017842 seconds and 4 git commands to generate.