{"AddEdge",(PyCFunction)SShape_AddEdge,METH_VARARGS,"(FEdge fe )Adds a FEdge to the list of FEdges. "},
{"AddNewVertex",(PyCFunction)SShape_AddNewVertex,METH_VARARGS,"(SVertex sv )Adds a SVertex to the list of SVertex of this Shape. The SShape attribute of the SVertex is also set to 'this'."},
{"setBBox",(PyCFunction)SShape_setBBox,METH_VARARGS,"(BBox bb )Sets the Bounding Box of the Shape"},
{"ComputeBBox",(PyCFunction)SShape_ComputeBBox,METH_NOARGS,"()Compute the bbox of the SShape"},
{"bbox",(PyCFunction)SShape_bbox,METH_NOARGS,"()Returns the bounding box of the shape."},
{"getVertexList",(PyCFunction)SShape_getVertexList,METH_NOARGS,"()Returns the list of SVertex of the Shape"},
{"getEdgeList",(PyCFunction)SShape_getEdgeList,METH_NOARGS,"()Returns the list of FEdges of the Shape."},
{"getId",(PyCFunction)SShape_getId,METH_NOARGS,"()Returns the Id of the Shape. "},
{"setId",(PyCFunction)SShape_setId,METH_VARARGS,"(Id id )Sets the Id of the shape. "},
{NULL,NULL,0,NULL}
};
/*-----------------------BPy_SShape type definition ------------------------------*/
PyTypeObjectSShape_Type={
PyObject_HEAD_INIT(NULL)
0,/* ob_size */
"SShape",/* tp_name */
sizeof(BPy_SShape),/* tp_basicsize */
0,/* tp_itemsize */
/* methods */
(destructor)SShape___dealloc__,/* tp_dealloc */
NULL,/* printfunc tp_print; */
NULL,/* getattrfunc tp_getattr; */
NULL,/* setattrfunc tp_setattr; */
NULL,/* tp_compare */
(reprfunc)SShape___repr__,/* 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 ***/