Registered Member
|
Hi everybody,
is there a quick way to get transformation T from local coordinates given by O',x',y',z'? Something like Eigen::Transformation::fromLocalCoords(x',y',x'.cross(y'),O')? Something shorter to write than creating local rotation matrix by columns and adding translation? Thanks! |
Moderator
|
t.linear() << x, y, x.cross(y);
t.translation() = O; |
Registered users: Baidu [Spider], Bing [Bot], Google [Bot], Yahoo [Bot]