rest of animation coding
animation , animator , keyframe & quaterions compiling but not debuged at all
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#ifndef HI
|
||||
#define HI
|
||||
|
||||
// your declarations (and certain types of definitions) here
|
||||
|
||||
|
||||
#include <map>
|
||||
#include "jointtransform.h"
|
||||
|
||||
|
||||
class Keyframe{
|
||||
private:
|
||||
float timestamp_;
|
||||
std::map<std::string, JointTransform> pose_;
|
||||
|
||||
public:
|
||||
Keyframe() = default;
|
||||
Keyframe(float timestamp,std::map<std::string, JointTransform> pose);
|
||||
float gettimestamp();
|
||||
std::map<std::string, JointTransform> getJointKeyFrames();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user