aslam_optimizer icon indicating copy to clipboard operation
aslam_optimizer copied to clipboard

RotationQuaternion: _C doesn't get set on "set()" call? (No real problem, just wondering)

Open PeterMuehlfellner opened this issue 11 years ago • 0 comments

Probably this is intentional, I just ran into it while doing some checks.

The line is:

void set( const Eigen::Vector4d & q){ _q = q; _p_q = q; }

would have expected something like:

void set( const Eigen::Vector4d & q){ _q = q; _p_q = q; _C = sm::kinematics::quat2r(_q);}

PeterMuehlfellner avatar May 09 '13 22:05 PeterMuehlfellner