X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Ftransform.cpp;h=6862221ba496fb5626736169c80789883c58cb7d;hp=78c3fb0f6bbbe92e16eeda3d0a7379de90d0cd09;hb=HEAD;hpb=f098a871fc6dc7b61a5aca5581fa327e4124c036 diff --git a/source/transform.cpp b/source/transform.cpp deleted file mode 100644 index 78c3fb0f..00000000 --- a/source/transform.cpp +++ /dev/null @@ -1,35 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#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