Files
ImprovGFX/OpenWindow/keyframe.cpp
T
Youssef Assem c2882035b5 rest of animation coding
animation , animator , keyframe & quaterions
compiling but not debuged at all
2019-12-17 04:48:20 +02:00

18 lines
291 B
C++

#include "keyframe.h"
Keyframe::Keyframe(float timestamp, std::map<std::string, JointTransform> pose)
{
timestamp_ = timestamp;
pose_ = pose;
}
float Keyframe::gettimestamp()
{
return timestamp_;
}
std::map<std::string, JointTransform> Keyframe::getJointKeyFrames()
{
return pose_;
}