rest of animation coding

animation , animator , keyframe & quaterions
compiling but not debuged at all
This commit is contained in:
Youssef Assem
2019-12-17 04:48:20 +02:00
parent 23dd149d48
commit c2882035b5
16 changed files with 492 additions and 17 deletions
+14 -3
View File
@@ -1,5 +1,16 @@
#pragma once
class Animation
{
};
#include "keyframe.h"
#include <vector>
class Animation {
private:
float length;
std::vector<Keyframe> keyframes_;
public:
Animation() = default;
Animation(float seconds, std::vector<Keyframe> keyframes);
float getlength();
std::vector<Keyframe>getkeyframe();
};