{"normalA",(PyCFunction)FEdgeSharp_normalA,METH_NOARGS,"() Returns the normal to the face lying on the right of the FEdge. If this FEdge is a border, it has no Face on its right and therefore, no normal."},
{"normalB",(PyCFunction)FEdgeSharp_normalB,METH_NOARGS,"() Returns the normal to the face lying on the left of the FEdge."},
{"aMaterialIndex",(PyCFunction)FEdgeSharp_aMaterialIndex,METH_NOARGS,"() Returns the index of the material of the face lying on the right of the FEdge. If this FEdge is a border, it has no Face on its right and therefore, no material. "},
{"bMaterialIndex",(PyCFunction)FEdgeSharp_bMaterialIndex,METH_NOARGS,"() Returns the material of the face lying on the left of the FEdge. "},
{"aMaterial",(PyCFunction)FEdgeSharp_aMaterial,METH_NOARGS,"() Returns the material of the face lying on the right of the FEdge. If this FEdge is a border, it has no Face on its right and therefore, no material."},
{"bMaterial",(PyCFunction)FEdgeSharp_bMaterial,METH_NOARGS,"() Returns the material of the face lying on the left of the FEdge."},
{"setNormalA",(PyCFunction)FEdgeSharp_setNormalA,METH_VARARGS,"([x,y,z]) Sets the normal to the face lying on the right of the FEdge."},
{"setNormalB",(PyCFunction)FEdgeSharp_setNormalB,METH_VARARGS,"([x,y,z]) Sets the normal to the face lying on the left of the FEdge. "},
{"setaMaterialIndex",(PyCFunction)FEdgeSharp_setaMaterialIndex,METH_VARARGS,"(unsigned int i) Sets the index of the material lying on the right of the FEdge. "},
{"setbMaterialIndex",(PyCFunction)FEdgeSharp_setbMaterialIndex,METH_VARARGS,"(unsigned int i) Sets the index of the material lying on the left of the FEdge. "},
{NULL,NULL,0,NULL}
};
/*-----------------------BPy_FEdgeSharp type definition ------------------------------*/
PyTypeObjectFEdgeSharp_Type={
PyObject_HEAD_INIT(NULL)
0,/* ob_size */
"FEdgeSharp",/* tp_name */
sizeof(BPy_FEdgeSharp),/* 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 ***/