{"push_vertex_back",(PyCFunction)Curve_push_vertex_back,METH_VARARGS,"(CurvePoint cp | SVertex sv) Adds a single vertex at the front of the Curve."},
{"push_vertex_front",(PyCFunction)Curve_push_vertex_front,METH_VARARGS,"(CurvePoint cp | SVertex sv) Adds a single vertex at the end of the Curve."},
{"empty",(PyCFunction)Curve_empty,METH_NOARGS,"() Returns true is the Curve doesn't have any Vertex yet."},
{"nSegments",(PyCFunction)Curve_nSegments,METH_NOARGS,"() Returns the number of segments in the oplyline constituing the Curve."},
{"verticesBegin",(PyCFunction)Curve_verticesBegin,METH_NOARGS,"() Returns an Interface0DIterator pointing onto the first vertex of the Curve and that can iterate over the vertices of the Curve."},
{"verticesEnd",(PyCFunction)Curve_verticesEnd,METH_NOARGS,"() Returns an Interface0DIterator pointing after the last vertex of the Curve and that can iterate over the vertices of the Curve."},
{"pointsBegin",(PyCFunction)Curve_pointsBegin,METH_VARARGS,"(float t=0) Returns an Interface0DIterator pointing onto the first point of the Curve and that can iterate over the points of the Curve at any resolution t. At each iteration a virtual temporary CurvePoint is created."},
{"pointsEnd",(PyCFunction)Curve_pointsEnd,METH_VARARGS,"(float t=0) Returns an Interface0DIterator pointing after the last point of the Curve and that can iterate over the points of the Curve at any resolution t. At each iteration a virtual temporary CurvePoint is created."},
{NULL,NULL,0,NULL}
};
/*-----------------------BPy_Curve type definition ------------------------------*/
PyTypeObjectCurve_Type={
PyObject_HEAD_INIT(NULL)
0,/* ob_size */
"Curve",/* tp_name */
sizeof(BPy_Curve),/* tp_basicsize */
0,/* tp_itemsize */
/* methods */
NULL,/* tp_dealloc */
NULL,/* printfunc tp_print; */
NULL,/* getattrfunc tp_getattr; */
NULL,/* setattrfunc tp_setattr; */
NULL,/* tp_compare */
NULL,/* tp_repr */
/* Method suites for standard classes */
NULL,/* PyNumberMethods *tp_as_number; */
NULL,/* PySequenceMethods *tp_as_sequence; */
NULL,/* PyMappingMethods *tp_as_mapping; */
/* More standard operations (here for binary compatibility) */
NULL,/* hashfunc tp_hash; */
NULL,/* ternaryfunc tp_call; */
NULL,/* reprfunc tp_str; */
NULL,/* getattrofunc tp_getattro; */
NULL,/* setattrofunc tp_setattro; */
/* Functions to access object as input/output buffer */
NULL,/* PyBufferProcs *tp_as_buffer; */
/*** Flags to define presence of optional/expanded features ***/
Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE,/* long tp_flags; */
NULL,/* char *tp_doc; Documentation string */
/*** Assigned meaning in release 2.0 ***/
/* call function for all accessible objects */
NULL,/* traverseproc tp_traverse; */
/* delete references to contained objects */
NULL,/* inquiry tp_clear; */
/*** Assigned meaning in release 2.1 ***/
/*** rich comparisons ***/
NULL,/* richcmpfunc tp_richcompare; */
/*** weak reference enabler ***/
0,/* long tp_weaklistoffset; */
/*** Added in release 2.2 ***/
/* Iterators */
NULL,/* getiterfunc tp_iter; */
NULL,/* iternextfunc tp_iternext; */
/*** Attribute descriptor and subclassing stuff ***/