summaryrefslogtreecommitdiffstats
path: root/libdimension-python/dimension-python.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2011-05-22 14:22:07 -0600
committerTavian Barnes <tavianator@gmail.com>2011-05-22 14:22:07 -0600
commit1bf306d4d93cc21c220a3f31835023e49e84dd2d (patch)
tree436959a8321100a3c36e8eef9a19279cb446e1fa /libdimension-python/dimension-python.h
parent0f0b704144bddc045657f7ed852b49d5e349b0bd (diff)
downloaddimension-1bf306d4d93cc21c220a3f31835023e49e84dd2d.tar.xz
Add cameras, objects, and spheres to Python module.
Diffstat (limited to 'libdimension-python/dimension-python.h')
-rw-r--r--libdimension-python/dimension-python.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/libdimension-python/dimension-python.h b/libdimension-python/dimension-python.h
index f365c2c..41f08c2 100644
--- a/libdimension-python/dimension-python.h
+++ b/libdimension-python/dimension-python.h
@@ -18,6 +18,20 @@
* <http://www.gnu.org/licenses/>. *
*************************************************************************/
+#ifndef DMNSN_PYTHON_H
+#define DMNSN_PYTHON_H
+
#define PY_SSIZE_T_CLEAN
#include <Python.h>
#include "dimension.h"
+#include "Vector.h"
+#include "Matrix.h"
+#include "Color.h"
+#include "Canvas.h"
+#include "Camera.h"
+#include "PerspectiveCamera.h"
+#include "Object.h"
+#include "Sphere.h"
+#include "Scene.h"
+
+#endif /* DMNSN_PYTHON_H */