]> git.tdb.fi Git - libs/gl.git/blobdiff - source/animatedobject.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / animatedobject.h
diff --git a/source/animatedobject.h b/source/animatedobject.h
deleted file mode 100644 (file)
index acec432..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef MSP_GL_ANIMATEDOBJECT_H_
-#define MSP_GL_ANIMATEDOBJECT_H_
-
-#include "matrix.h"
-#include "objectinstance.h"
-
-namespace Msp {
-namespace GL {
-
-/**
-An object instance that can be animated.  Despite the name, this can also be
-useful for displaying objects at a static position.
-*/
-class AnimatedObject: public ObjectInstance
-{
-private:
-       Matrix matrix;
-       ProgramData *shdata;
-
-public:
-       AnimatedObject(const Object &);
-
-       void set_matrix(const Matrix &);
-       void set_pose_matrix(unsigned, const Matrix &);
-
-       virtual void setup_render(Renderer &, const Tag &) const;
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif