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)) {
65 else if ((
void)PyErr_Clear(),
66 PyArg_ParseTupleAndKeywords(
72 PyErr_SetString(PyExc_TypeError,
"invalid argument(s)");
76 self->py_if1D.borrowed =
false;
92 if (
ELEM(keynum, 0, 1)) {
99 PyErr_Format(PyExc_IndexError,
"FEdge[index]: index %d out of range", keynum);
120 FEdge_first_svertex_doc,
121 "The first SVertex constituting this FEdge.\n"
123 ":type: :class:`SVertex`");
137 PyErr_SetString(PyExc_TypeError,
"value must be an SVertex");
146 FEdge_second_svertex_doc,
147 "The second SVertex constituting this FEdge.\n"
149 ":type: :class:`SVertex`");
163 PyErr_SetString(PyExc_TypeError,
"value must be an SVertex");
172 FEdge_next_fedge_doc,
173 "The FEdge following this one in the ViewEdge. The value is None if\n"
174 "this FEdge is the last of the ViewEdge.\n"
176 ":type: :class:`FEdge`");
190 PyErr_SetString(PyExc_TypeError,
"value must be an FEdge");
199 FEdge_previous_fedge_doc,
200 "The FEdge preceding this one in the ViewEdge. The value is None if\n"
201 "this FEdge is the first one of the ViewEdge.\n"
203 ":type: :class:`FEdge`");
217 PyErr_SetString(PyExc_TypeError,
"value must be an FEdge");
227 "The ViewEdge to which this FEdge belongs to.\n"
229 ":type: :class:`ViewEdge`");
243 PyErr_SetString(PyExc_TypeError,
"value must be an ViewEdge");
253 "True if this FEdge is a smooth FEdge.\n"
264 if (!PyBool_Check(value)) {
265 PyErr_SetString(PyExc_TypeError,
"value must be boolean");
275 "The Id of this FEdge.\n"
277 ":type: :class:`Id`");
288 PyErr_SetString(PyExc_TypeError,
"value must be an Id");
298 "The nature of this FEdge.\n"
300 ":type: :class:`Nature`");
310 PyErr_SetString(PyExc_TypeError,
"value must be a Nature");
313 self->fe->setNature(PyLong_AsLong((PyObject *)&((
BPy_Nature *)value)->
i));
321 FEdge_first_svertex_doc,
326 FEdge_second_svertex_doc,
331 FEdge_next_fedge_doc,
336 FEdge_previous_fedge_doc,
350 {
nullptr,
nullptr,
nullptr,
nullptr,
nullptr}
356 PyVarObject_HEAD_INIT(
nullptr, 0)
375 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
PyObject * BPy_Id_from_Id(Id &id)
bool bool_from_PyBool(PyObject *b)
PyObject * Any_BPy_FEdge_from_FEdge(FEdge &fe)
PyObject * BPy_Nature_from_Nature(ushort n)
PyObject * BPy_SVertex_from_SVertex(SVertex &sv)
PyObject * BPy_ViewEdge_from_ViewEdge(ViewEdge &ve)
PyObject * PyBool_from_bool(bool b)
static int FEdge_viewedge_set(BPy_FEdge *self, PyObject *value, void *)
static int FEdge_previous_fedge_set(BPy_FEdge *self, PyObject *value, void *)
static PyObject * FEdge_id_get(BPy_FEdge *self, void *)
static PyObject * FEdge_viewedge_get(BPy_FEdge *self, void *)
static PyObject * FEdge_first_svertex_get(BPy_FEdge *self, void *)
static PyObject * FEdge_is_smooth_get(BPy_FEdge *self, void *)
static int FEdge_is_smooth_set(BPy_FEdge *self, PyObject *value, void *)
static int FEdge_first_svertex_set(BPy_FEdge *self, PyObject *value, void *)
static PySequenceMethods BPy_FEdge_as_sequence
static PyObject * FEdge_previous_fedge_get(BPy_FEdge *self, void *)
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_second_svertex_get(BPy_FEdge *self, void *)
static PyObject * FEdge_nature_get(BPy_FEdge *self, void *)
static PyObject * FEdge_sq_item(BPy_FEdge *self, Py_ssize_t keynum)
static int FEdge_nature_set(BPy_FEdge *self, PyObject *value, void *)
static Py_ssize_t FEdge_sq_length(BPy_FEdge *)
static int FEdge_id_set(BPy_FEdge *self, PyObject *value, void *)
static int FEdge_init(BPy_FEdge *self, PyObject *args, PyObject *kwds)
static PyObject * FEdge_next_fedge_get(BPy_FEdge *self, void *)
static int FEdge_next_fedge_set(BPy_FEdge *self, PyObject *value, void *)
static int FEdge_second_svertex_set(BPy_FEdge *self, PyObject *value, void *)
static PyGetSetDef BPy_FEdge_getseters[]
#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