Convert an Eigen3 Transform's rotation into an AngleAxis

747 Views Asked by At

How can this be done using Eigen 3?

#include <Eigen/Geometry>

Affine3d transform;
AngleAxisd aa = ...;
1

There are 1 best solutions below

0
On BEST ANSWER

Of course, I found the answer shortly after posting the question.

Affine3d transform;
AngleAxisd aa(transform.rotation());

Naturally this discards any translation component in the original affine transformation.