]> git.tdb.fi Git - libs/gl.git/blob - source/transform.h
Add Id tags and copyright notices to files
[libs/gl.git] / source / transform.h
1 /* $Id$
2
3 This file is part of libmspgl
4 Copyright © 2007  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GL_TRANSFORM_H_
9 #define MSP_GL_TRANSFORM_H_
10
11 namespace Msp {
12 namespace GL {
13
14 void translate(float, float, float);
15 void rotate(float, float, float, float);
16 void scale(float, float, float);
17 void scale_uniform(float);
18
19 } // namespace GL
20 } // namespace Msp
21
22 #endif