change the values of the functions get/set size/loc/rot to lists.

added the attributes loc, rot, size
changed the parameters of getControlPoint to int int list
cosmetic changes in names
This commit is contained in:
2003-07-09 21:18:34 +00:00
parent 1e666dd1cd
commit 4cf1470b99
2 changed files with 80 additions and 57 deletions

View File

@@ -182,9 +182,9 @@ static void CurveDeAlloc (BPy_Curve *msh);
static int CurveSetAttr (BPy_Curve *msh, char *name, PyObject *v);
static PyObject *CurveGetAttr (BPy_Curve *msh, char *name);
static PyObject *CurveRepr (BPy_Curve *msh);
PyObject* CurveCreatePyObject (struct Curve *curve);
int CurveCheckPyObject (PyObject *py_obj);
struct Curve* CurveFromPyObject (PyObject *py_obj);
PyObject* Curve_CreatePyObject (struct Curve *curve);
//int Curve_CheckPyObject (PyObject *py_obj);
//struct Curve* Curve_FromPyObject (PyObject *py_obj);
/*****************************************************************************/