{"vertexA",(PyCFunction)FEdge_vertexA,METH_NOARGS,"() Returns the first SVertex."},
{"vertexB",(PyCFunction)FEdge_vertexB,METH_NOARGS,"() Returns the second SVertex."},
{"__getitem__",(PyCFunction)FEdge___getitem__,METH_VARARGS,"(int i) Returns the first SVertex if i=0, the seccond SVertex if i=1."},
{"nextEdge",(PyCFunction)FEdge_nextEdge,METH_NOARGS,"() Returns the FEdge following this one in the ViewEdge. If this FEdge is the last of the ViewEdge, 0 is returned."},
{"previousEdge",(PyCFunction)FEdge_previousEdge,METH_NOARGS,"Returns the Edge preceding this one in the ViewEdge. If this FEdge is the first one of the ViewEdge, 0 is returned."},
{"getVertices",(PyCFunction)FEdge_getVertices,METH_NOARGS,"Returns the vertices"},
{"getPoints",(PyCFunction)FEdge_getPoints,METH_NOARGS,"Returns the points. The difference with getVertices() is that here we can iterate over points of the 1D element at any given sampling. At each call, a virtual point is created."},
{"isSmooth",(PyCFunction)FEdge_isSmooth,METH_NOARGS,"() Returns true if this FEdge is a smooth FEdge."},
{"SetVertexA",(PyCFunction)FEdge_SetVertexA,METH_VARARGS,"(SVertex v) Sets the first SVertex. ."},
{"SetVertexB",(PyCFunction)FEdge_SetVertexB,METH_VARARGS,"(SVertex v) Sets the second SVertex. "},
{"SetId",(PyCFunction)FEdge_SetId,METH_VARARGS,"(Id id) Sets the FEdge Id ."},
{"SetNextEdge",(PyCFunction)FEdge_SetNextEdge,METH_VARARGS,"(FEdge e) Sets the pointer to the next FEdge. "},
{"SetPreviousEdge",(PyCFunction)FEdge_SetPreviousEdge,METH_VARARGS,"(FEdge e) Sets the pointer to the previous FEdge. "},
{"SetSmooth",(PyCFunction)FEdge_SetSmooth,METH_VARARGS,"(bool b) Sets the flag telling whether this FEdge is smooth or sharp. true for Smooth, false for Sharp. "},
{NULL,NULL,0,NULL}
};
/*-----------------------BPy_FEdge type definition ------------------------------*/
PyTypeObjectFEdge_Type={
PyObject_HEAD_INIT(NULL)
0,/* ob_size */
"FEdge",/* tp_name */
sizeof(BPy_FEdge),/* 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 ***/