rest of animation coding
animation , animator , keyframe & quaterions compiling but not debuged at all
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#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_;
|
||||
}
|
||||
Reference in New Issue
Block a user