]> git.tdb.fi Git - libs/gl.git/blobdiff - source/transform.cpp
Check the flat qualifier from the correct member
[libs/gl.git] / source / transform.cpp
diff --git a/source/transform.cpp b/source/transform.cpp
deleted file mode 100644 (file)
index 78c3fb0..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#include <GL/gl.h>
-#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