diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-05-19 22:59:29 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-05-19 22:59:29 -0600 |
commit | f4053866258e48dd98136142471ecabf6c138160 (patch) | |
tree | 5d472c9b0072dc7e493882f41f548b113b0c624d /libdimension-python/Vector.h | |
parent | 05ffbe15e92140617e90fe0ccbc22cc1fe0ac3e3 (diff) | |
download | dimension-f4053866258e48dd98136142471ecabf6c138160.tar.xz |
Add matricies to Python module.
Diffstat (limited to 'libdimension-python/Vector.h')
-rw-r--r-- | libdimension-python/Vector.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libdimension-python/Vector.h b/libdimension-python/Vector.h index 0ec288d..7a8d769 100644 --- a/libdimension-python/Vector.h +++ b/libdimension-python/Vector.h @@ -27,6 +27,7 @@ typedef struct dmnsn_py_Vector { extern PyTypeObject dmnsn_py_VectorType; +bool dmnsn_py_Vector_args(dmnsn_vector *v, PyObject *args, PyObject *kwds); bool dmnsn_py_init_VectorType(void); /* Global methods */ |