]> git.tdb.fi Git - libs/gl.git/blobdiff - source/keyframe.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / keyframe.h
diff --git a/source/keyframe.h b/source/keyframe.h
deleted file mode 100644 (file)
index bc3d65e..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifndef MSP_GL_KEYFRAME_H_
-#define MSP_GL_KEYFRAME_H_
-
-#include <msp/datafile/objectloader.h>
-#include "matrix.h"
-
-namespace Msp {
-namespace GL {
-
-/**
-Keyframes are used to encapsulate object state for animation.
-*/
-class KeyFrame
-{
-public:
-       class Loader: public DataFile::ObjectLoader<KeyFrame>
-       {
-       public:
-               Loader(KeyFrame &);
-       private:
-               void position(float, float, float);
-               void rotation(float, float, float, float);
-               void scaling_uniform(float);
-               void scaling(float, float, float);
-       };
-
-private:
-       Matrix matrix;
-
-public:
-       void set_matrix(const Matrix &);
-       const Matrix &get_matrix() const { return matrix; }
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif