X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Ftransform.cpp;h=6862221ba496fb5626736169c80789883c58cb7d;hp=6361fc5029a4ae7c66d1084815fc44a253f07339;hb=HEAD;hpb=84bc56b96c21c831104a22e0cbd0f3b72ab5d8c3 diff --git a/source/transform.cpp b/source/transform.cpp deleted file mode 100644 index 6361fc50..00000000 --- a/source/transform.cpp +++ /dev/null @@ -1,28 +0,0 @@ -#include -#include "transform.h" - -namespace Msp { -namespace GL { - -void translate(float x, float y, float z) -{ - glTranslatef(x, y, z); -} - -void rotate(float a, float x, float y, float z) -{ - glRotatef(a, x, y, z); -} - -void scale(float x, float y, float z) -{ - glScalef(x, y, z); -} - -void scale_uniform(float s) -{ - scale(s, s, s); -} - -} // namespace GL -} // namespace Msp