Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-01-30 17:30:10 +0000
committerStijn Buys <ingar@osirion.org>2008-01-30 17:30:10 +0000
commit4fd8d5c71365e58e6dff36fc756d8e2e55204db7 (patch)
tree851c86f497ce3bfa7050ae5634f50f888d6d80f8 /src/math/mathlib.h
parent28180e6b6763e4ce5d65c02e4df5380f11e6d10a (diff)
math module
Diffstat (limited to 'src/math/mathlib.h')
-rw-r--r--src/math/mathlib.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/math/mathlib.h b/src/math/mathlib.h
new file mode 100644
index 0000000..2e1c245
--- /dev/null
+++ b/src/math/mathlib.h
@@ -0,0 +1,20 @@
+/*
+ math/math.h
+ This file is part of the Osirion project and is distributed under
+ the terms of the GNU General Public License version 2
+*/
+
+#ifndef __INCLUDED_MATH_H__
+#define __INCLUDED_MATH_H__
+
+/// this namespace contains mathematical classes and functions
+/** This is an independent library
+ */
+namespace math {}
+
+#include "math/vector3f.h"
+#include "math/color.h"
+#include "math/functions.h"
+
+#endif // __INCLUDED_MATH_H__
+