X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fanimatedobject.h;h=2b640b763fa1859807f5a2a0736b44c57ca7aa87;hb=HEAD;hp=acec4322af1d08ee15c755fe1cdea9368c9af41e;hpb=57fc4142e0b19a21f61c60b00f8310d5d2c27871;p=libs%2Fgl.git diff --git a/source/animatedobject.h b/source/animatedobject.h deleted file mode 100644 index acec4322..00000000 --- a/source/animatedobject.h +++ /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