]> git.tdb.fi Git - libs/gl.git/commitdiff
Allow setting keyframe matrix from the outside
authorMikko Rasa <tdb@tdb.fi>
Sun, 12 Aug 2012 09:13:17 +0000 (12:13 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sun, 12 Aug 2012 09:13:17 +0000 (12:13 +0300)
source/keyframe.cpp
source/keyframe.h

index 7310c239757c0a3deea63c3c692b596acb578c90..429d893c1afa513fd351913d66833cfd7c9ccc3f 100644 (file)
@@ -3,6 +3,11 @@
 namespace Msp {
 namespace GL {
 
+void KeyFrame::set_matrix(const Matrix &m)
+{
+       matrix = m;
+}
+
 KeyFrame::Loader::Loader(KeyFrame &k):
        DataFile::ObjectLoader<KeyFrame>(k)
 {
index 4b0fa5bdcafd1c9b313654a4cb27cca7a3c65ed1..bc3d65ecbfa80fec692d21f326f4e016e2bd5df7 100644 (file)
@@ -28,6 +28,7 @@ private:
        Matrix matrix;
 
 public:
+       void set_matrix(const Matrix &);
        const Matrix &get_matrix() const { return matrix; }
 };