diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-05-22 14:22:07 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-05-22 14:22:07 -0600 |
commit | 1bf306d4d93cc21c220a3f31835023e49e84dd2d (patch) | |
tree | 436959a8321100a3c36e8eef9a19279cb446e1fa /libdimension-python/Vector.h | |
parent | 0f0b704144bddc045657f7ed852b49d5e349b0bd (diff) | |
download | dimension-1bf306d4d93cc21c220a3f31835023e49e84dd2d.tar.xz |
Add cameras, objects, and spheres to Python module.
Diffstat (limited to 'libdimension-python/Vector.h')
-rw-r--r-- | libdimension-python/Vector.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libdimension-python/Vector.h b/libdimension-python/Vector.h index d7e4e05..89357f2 100644 --- a/libdimension-python/Vector.h +++ b/libdimension-python/Vector.h @@ -18,8 +18,6 @@ * <http://www.gnu.org/licenses/>. * *************************************************************************/ -#include "dimension-python.h" - typedef struct dmnsn_py_Vector { PyObject_HEAD dmnsn_vector v; @@ -27,7 +25,7 @@ typedef struct dmnsn_py_Vector { extern PyTypeObject dmnsn_py_VectorType; -bool dmnsn_py_Vector_args(dmnsn_vector *v, PyObject *args, PyObject *kwds); +int dmnsn_py_VectorParse(PyObject *object, void *ptr); bool dmnsn_py_init_VectorType(void); /* Global methods */ |