Loading [MathJax]/extensions/TeX/AMSsymbols.js
Radium Engine  1.5.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
Pose.hpp
1 #pragma once
2 
3 #include <Core/Containers/AlignedStdVector.hpp>
4 
5 namespace Ra {
6 namespace Core {
7 namespace Animation {
8 
13 /*
14  * The Pose is represented just as a vector of Transforms.
15  */
16 using Pose = AlignedStdVector<Eigen::Transform<Scalar, 3, Eigen::Affine>>;
17 
18 // Typedef for code readability purposes only.
19 using RestPose = Pose;
20 using RefPose = RestPose;
21 
22 using LocalPose = Pose;
23 using ModelPose = Pose;
24 
25 using RelativePose = Pose;
26 
27 } // namespace Animation
28 } // namespace Core
29 } // namespace Ra
Definition: Cage.cpp:3