Definition at line 49 of file AnimationUtil.h.
◆ KeyFrame()
CSE::KeyFrame::KeyFrame |
( |
float |
timeStamp, |
|
|
std::vector< JointTransform * > && |
pose |
|
) |
| |
|
inline |
Definition at line 51 of file AnimationUtil.h.
51 {
52 m_timeStamp = timeStamp;
53 m_pose = std::move(pose);
54 }
◆ ~KeyFrame()
CSE::KeyFrame::~KeyFrame |
( |
| ) |
|
|
inline |
Definition at line 56 of file AnimationUtil.h.
56 {
57 for (auto pair : m_pose) {
58 SAFE_DELETE(pair);
59 }
60
61 m_pose.clear();
62 }
◆ GetJointKeyFrames()
std::vector< JointTransform * > CSE::KeyFrame::GetJointKeyFrames |
( |
| ) |
const |
|
inline |
◆ GetTimeStamp()
float CSE::KeyFrame::GetTimeStamp |
( |
| ) |
const |
|
inline |
The documentation for this class was generated from the following file: