6 KeyFrame::Loader::Loader(KeyFrame &k):
7 DataFile::ObjectLoader<KeyFrame>(k)
9 add("position", &Loader::position);
10 add("rotation", &Loader::rotation);
11 add("scaling", &Loader::scaling_uniform);
12 add("scaling", &Loader::scaling);
15 void KeyFrame::Loader::position(float x, float y, float z)
17 obj.matrix.translate(x, y, z);
20 void KeyFrame::Loader::rotation(float a, float x, float y, float z)
22 obj.matrix.rotate_deg(a, x, y, z);
25 void KeyFrame::Loader::scaling_uniform(float s)
30 void KeyFrame::Loader::scaling(float x, float y, float z)
32 obj.matrix.scale(x, y, z);