9 #include "../BPy_Convert.h"
10 #include "../BPy_Id.h"
11 #include "../BPy_Nature.h"
12 #include "../Interface0D/BPy_SVertex.h"
13 #include "../Interface1D/BPy_ViewEdge.h"
26 "Class hierarchy: :class:`Interface1D` > :class:`FEdge`\n"
28 "Base Class for feature edges. This FEdge can represent a silhouette,\n"
29 "a crease, a ridge/valley, a border or a suggestive contour. For\n"
30 "silhouettes, the FEdge is oriented so that the visible face lies on\n"
31 "the left of the edge. For borders, the FEdge is oriented so that the\n"
32 "face lies on the left of the edge. An FEdge can represent an initial\n"
33 "edge of the mesh or runs across a face of the initial mesh depending\n"
34 "on the smoothness or sharpness of the mesh. This class is specialized\n"
35 "into a smooth and a sharp version since their properties slightly vary\n"
36 "from one to the other.\n"
38 ".. method:: FEdge()\n"
41 " Builds an :class:`FEdge` using the default constructor,\n"
42 " copy constructor, or between two :class:`SVertex` objects.\n"
44 " :arg brother: An FEdge object.\n"
45 " :type brother: :class:`FEdge`\n"
46 " :arg first_vertex: The first SVertex.\n"
47 " :type first_vertex: :class:`SVertex`\n"
48 " :arg second_vertex: The second SVertex.\n"
49 " :type second_vertex: :class:`SVertex`");
53 static const char *kwlist_1[] = {
"brother",
nullptr};
54 static const char *kwlist_2[] = {
"first_vertex",
"second_vertex",
nullptr};
55 PyObject *obj1 =
nullptr, *obj2 =
nullptr;
57 if (PyArg_ParseTupleAndKeywords(args, kwds,
"|O!", (
char **)kwlist_1, &
FEdge_Type, &obj1)) {
59 self->fe =
new FEdge();
65 else if ((
void)PyErr_Clear(),
66 PyArg_ParseTupleAndKeywords(args,
77 PyErr_SetString(PyExc_TypeError,
"invalid argument(s)");
80 self->py_if1D.if1D =
self->fe;
81 self->py_if1D.borrowed =
false;
97 if (
ELEM(keynum, 0, 1)) {
98 SVertex *
v =
self->fe->operator[](keynum);
104 PyErr_Format(PyExc_IndexError,
"FEdge[index]: index %d out of range", keynum);
124 "The first SVertex constituting this FEdge.\n"
126 ":type: :class:`SVertex`");
140 PyErr_SetString(PyExc_TypeError,
"value must be an SVertex");
148 "The second SVertex constituting this FEdge.\n"
150 ":type: :class:`SVertex`");
164 PyErr_SetString(PyExc_TypeError,
"value must be an SVertex");
172 "The FEdge following this one in the ViewEdge. The value is None if\n"
173 "this FEdge is the last of the ViewEdge.\n"
175 ":type: :class:`FEdge`");
189 PyErr_SetString(PyExc_TypeError,
"value must be an FEdge");
192 self->fe->setNextEdge(((
BPy_FEdge *)value)->fe);
197 "The FEdge preceding this one in the ViewEdge. The value is None if\n"
198 "this FEdge is the first one of the ViewEdge.\n"
200 ":type: :class:`FEdge`");
214 PyErr_SetString(PyExc_TypeError,
"value must be an FEdge");
217 self->fe->setPreviousEdge(((
BPy_FEdge *)value)->fe);
222 "The ViewEdge to which this FEdge belongs to.\n"
224 ":type: :class:`ViewEdge`");
228 ViewEdge *ve =
self->fe->viewedge();
238 PyErr_SetString(PyExc_TypeError,
"value must be an ViewEdge");
246 "True if this FEdge is a smooth FEdge.\n"
257 if (!PyBool_Check(value)) {
258 PyErr_SetString(PyExc_TypeError,
"value must be boolean");
266 "The Id of this FEdge.\n"
268 ":type: :class:`Id`");
279 PyErr_SetString(PyExc_TypeError,
"value must be an Id");
282 self->fe->setId(*(((
BPy_Id *)value)->
id));
287 "The nature of this FEdge.\n"
289 ":type: :class:`Nature`");
299 PyErr_SetString(PyExc_TypeError,
"value must be a Nature");
302 self->fe->setNature(PyLong_AsLong((PyObject *)&((
BPy_Nature *)value)->i));
310 FEdge_first_svertex_doc,
315 FEdge_second_svertex_doc,
320 FEdge_next_fedge_doc,
325 FEdge_previous_fedge_doc,
339 {
nullptr,
nullptr,
nullptr,
nullptr,
nullptr}
345 PyVarObject_HEAD_INIT(
nullptr, 0)
"FEdge",
363 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
PyObject * BPy_SVertex_from_SVertex(SVertex &sv)
PyObject * PyBool_from_bool(bool b)
bool bool_from_PyBool(PyObject *b)
PyObject * BPy_ViewEdge_from_ViewEdge(ViewEdge &ve)
PyObject * Any_BPy_FEdge_from_FEdge(FEdge &fe)
PyObject * BPy_Id_from_Id(Id &id)
PyObject * BPy_Nature_from_Nature(unsigned short n)
static PyObject * FEdge_nature_get(BPy_FEdge *self, void *UNUSED(closure))
static int FEdge_first_svertex_set(BPy_FEdge *self, PyObject *value, void *UNUSED(closure))
static int FEdge_id_set(BPy_FEdge *self, PyObject *value, void *UNUSED(closure))
static PySequenceMethods BPy_FEdge_as_sequence
static int FEdge_second_svertex_set(BPy_FEdge *self, PyObject *value, void *UNUSED(closure))
static int FEdge_nature_set(BPy_FEdge *self, PyObject *value, void *UNUSED(closure))
static int FEdge_viewedge_set(BPy_FEdge *self, PyObject *value, void *UNUSED(closure))
static PyObject * FEdge_previous_fedge_get(BPy_FEdge *self, void *UNUSED(closure))
static PyObject * FEdge_second_svertex_get(BPy_FEdge *self, void *UNUSED(closure))
static PyObject * FEdge_is_smooth_get(BPy_FEdge *self, void *UNUSED(closure))
static Py_ssize_t FEdge_sq_length(BPy_FEdge *)
static int FEdge_is_smooth_set(BPy_FEdge *self, PyObject *value, void *UNUSED(closure))
static int FEdge_next_fedge_set(BPy_FEdge *self, PyObject *value, void *UNUSED(closure))
static PyObject * FEdge_next_fedge_get(BPy_FEdge *self, void *UNUSED(closure))
PyDoc_STRVAR(FEdge_doc, "Class hierarchy: :class:`Interface1D` > :class:`FEdge`\n" "\n" "Base Class for feature edges. This FEdge can represent a silhouette,\n" "a crease, a ridge/valley, a border or a suggestive contour. For\n" "silhouettes, the FEdge is oriented so that the visible face lies on\n" "the left of the edge. For borders, the FEdge is oriented so that the\n" "face lies on the left of the edge. An FEdge can represent an initial\n" "edge of the mesh or runs across a face of the initial mesh depending\n" "on the smoothness or sharpness of the mesh. This class is specialized\n" "into a smooth and a sharp version since their properties slightly vary\n" "from one to the other.\n" "\n" ".. method:: FEdge()\n" " FEdge(brother)\n" "\n" " Builds an :class:`FEdge` using the default constructor,\n" " copy constructor, or between two :class:`SVertex` objects.\n" "\n" " :arg brother: An FEdge object.\n" " :type brother: :class:`FEdge`\n" " :arg first_vertex: The first SVertex.\n" " :type first_vertex: :class:`SVertex`\n" " :arg second_vertex: The second SVertex.\n" " :type second_vertex: :class:`SVertex`")
static PyObject * FEdge_first_svertex_get(BPy_FEdge *self, void *UNUSED(closure))
static PyObject * FEdge_id_get(BPy_FEdge *self, void *UNUSED(closure))
static int FEdge_previous_fedge_set(BPy_FEdge *self, PyObject *value, void *UNUSED(closure))
static int FEdge_init(BPy_FEdge *self, PyObject *args, PyObject *kwds)
static PyGetSetDef BPy_FEdge_getseters[]
static PyObject * FEdge_sq_item(BPy_FEdge *self, int keynum)
static PyObject * FEdge_viewedge_get(BPy_FEdge *self, void *UNUSED(closure))
#define BPy_FEdge_Check(v)
PyTypeObject Interface1D_Type
#define BPy_Nature_Check(v)
PyTypeObject SVertex_Type
#define BPy_SVertex_Check(v)
#define BPy_ViewEdge_Check(v)
ATTR_WARN_UNUSED_RESULT const BMVert * v