Navigation
API > API/Plugins > API/Plugins/RigLogicLib
| Name | mat_to_euler |
| Type | struct |
| Header File | /Engine/Plugins/Animation/RigLogic/Source/RigLogicLib/Public/tdm/Transforms.h |
| Include Path | #include "tdm/Transforms.h" |
Syntax
template<typename T, rot_seq order>
struct mat_to_euler
Struct Specializations
| Name | Remarks |
|---|---|
| mat_to_euler< T, rot_seq::xyz > | Row-major XYZ intrinsic (R = Rx * Ry * Rz): |
| mat_to_euler< T, rot_seq::xzy > | Row major XZY intrinsic (R = Rx * Rz * Ry) |
| mat_to_euler< T, rot_seq::yxz > | Row major YXZ intrinsic (R = Ry * Rx * Rz) |
| mat_to_euler< T, rot_seq::yzx > | Row major YZX intrinsic (R = Ry * Rz * Rx) |
| mat_to_euler< T, rot_seq::zxy > | Row major ZXY intrinsic (R = Rz * Rx * Ry) |
| mat_to_euler< T, rot_seq::zyx > | Row major ZYX intrinsic (R = Rz * Ry * Rx) |