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
+16
View File
@@ -1 +1,17 @@
#include "animation.h"
Animation::Animation(float seconds, std::vector<Keyframe> keyframes)
{
length = seconds;
keyframes_ = keyframes;
}
float Animation::getlength()
{
return length;
}
std::vector<Keyframe> Animation::getkeyframe()
{
return keyframes_;
}