diff options
Diffstat (limited to 'src/body.h')
-rw-r--r-- | src/body.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,6 @@ //#define DOCLAMP #define MAXHEIGHT -1.5 /* Notion of max and min is reversed due to z pointing down */ #define MINHEIGHT -0.3 /* */ -#define STATESIZE 13 using Eigen::Matrix; @@ -32,6 +31,7 @@ class Body #if STATESIZE==13 Matrix<double,STATESIZE,STATESIZE> F(const Vector3d &ang, double dt); Quaterniond qhat(); + void qhat(const Quaterniond &q); #else Matrix<double,STATESIZE,STATESIZE> F(const Vector3d &ang, const Quaterniond &q, double dt); #endif |