From 1bf306d4d93cc21c220a3f31835023e49e84dd2d Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 22 May 2011 14:22:07 -0600 Subject: Add cameras, objects, and spheres to Python module. --- libdimension-python/Matrix.h | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'libdimension-python/Matrix.h') diff --git a/libdimension-python/Matrix.h b/libdimension-python/Matrix.h index 6299618..fa34da6 100644 --- a/libdimension-python/Matrix.h +++ b/libdimension-python/Matrix.h @@ -18,8 +18,6 @@ * . * *************************************************************************/ -#include "dimension-python.h" - typedef struct dmnsn_py_Matrix { PyObject_HEAD dmnsn_matrix m; @@ -30,8 +28,6 @@ extern PyTypeObject dmnsn_py_MatrixType; bool dmnsn_py_init_MatrixType(void); /* Global methods */ -PyObject *dmnsn_py_Matrix_scale(PyObject *self, PyObject *args, PyObject *kwds); -PyObject *dmnsn_py_Matrix_translate(PyObject *self, PyObject *args, - PyObject *kwds); -PyObject *dmnsn_py_Matrix_rotate(PyObject *self, PyObject *args, - PyObject *kwds); +PyObject *dmnsn_py_Matrix_scale(PyObject *self, PyObject *args); +PyObject *dmnsn_py_Matrix_translate(PyObject *self, PyObject *args); +PyObject *dmnsn_py_Matrix_rotate(PyObject *self, PyObject *args); -- cgit v1.2.3