30 "Class hierarchy: :class:`Interface1D` > :class:`FEdge`\n"
32 "Base Class for feature edges. This FEdge can represent a silhouette,\n"
33 "a crease, a ridge/valley, a border or a suggestive contour. For\n"
34 "silhouettes, the FEdge is oriented so that the visible face lies on\n"
35 "the left of the edge. For borders, the FEdge is oriented so that the\n"
36 "face lies on the left of the edge. An FEdge can represent an initial\n"
37 "edge of the mesh or runs across a face of the initial mesh depending\n"
38 "on the smoothness or sharpness of the mesh. This class is specialized\n"
39 "into a smooth and a sharp version since their properties slightly vary\n"
40 "from one to the other.\n"
42 ".. method:: FEdge()\n"
45 " Builds an :class:`FEdge` using the default constructor,\n"
46 " copy constructor, or between two :class:`SVertex` objects.\n"
48 " :arg brother: An FEdge object.\n"
49 " :type brother: :class:`FEdge`\n"
50 " :arg first_vertex: The first SVertex.\n"
51 " :type first_vertex: :class:`SVertex`\n"
52 " :arg second_vertex: The second SVertex.\n"
53 " :type second_vertex: :class:`SVertex`");
57 static const char *kwlist_1[] = {
"brother",
nullptr};
58 static const char *kwlist_2[] = {
"first_vertex",
"second_vertex",
nullptr};
59 PyObject *obj1 =
nullptr, *obj2 =
nullptr;
61 if (PyArg_ParseTupleAndKeywords(args, kwds,
"|O!", (
char **)kwlist_1, &
FEdge_Type, &obj1)) {
69 else if ((
void)PyErr_Clear(),
70 PyArg_ParseTupleAndKeywords(
76 PyErr_SetString(PyExc_TypeError,
"invalid argument(s)");
80 self->py_if1D.borrowed =
false;
96 if (
ELEM(keynum, 0, 1)) {
103 PyErr_Format(PyExc_IndexError,
"FEdge[index]: index %d out of range", keynum);
124 FEdge_first_svertex_doc,
125 "The first SVertex constituting this FEdge.\n"
127 ":type: :class:`SVertex`");
141 PyErr_SetString(PyExc_TypeError,
"value must be an SVertex");
150 FEdge_second_svertex_doc,
151 "The second SVertex constituting this FEdge.\n"
153 ":type: :class:`SVertex`");
167 PyErr_SetString(PyExc_TypeError,
"value must be an SVertex");
176 FEdge_next_fedge_doc,
177 "The FEdge following this one in the ViewEdge. The value is None if\n"
178 "this FEdge is the last of the ViewEdge.\n"
180 ":type: :class:`FEdge`");
194 PyErr_SetString(PyExc_TypeError,
"value must be an FEdge");
203 FEdge_previous_fedge_doc,
204 "The FEdge preceding this one in the ViewEdge. The value is None if\n"
205 "this FEdge is the first one of the ViewEdge.\n"
207 ":type: :class:`FEdge`");
221 PyErr_SetString(PyExc_TypeError,
"value must be an FEdge");
231 "The ViewEdge to which this FEdge belongs to.\n"
233 ":type: :class:`ViewEdge`");
247 PyErr_SetString(PyExc_TypeError,
"value must be an ViewEdge");
257 "True if this FEdge is a smooth FEdge.\n"
268 if (!PyBool_Check(value)) {
269 PyErr_SetString(PyExc_TypeError,
"value must be boolean");
279 "The Id of this FEdge.\n"
281 ":type: :class:`Id`");
292 PyErr_SetString(PyExc_TypeError,
"value must be an Id");
302 "The nature of this FEdge.\n"
304 ":type: :class:`Nature`");
314 PyErr_SetString(PyExc_TypeError,
"value must be a Nature");
317 self->fe->setNature(PyLong_AsLong((PyObject *)&((
BPy_Nature *)value)->i));
325 FEdge_first_svertex_doc,
330 FEdge_second_svertex_doc,
335 FEdge_next_fedge_doc,
340 FEdge_previous_fedge_doc,
354 {
nullptr,
nullptr,
nullptr,
nullptr,
nullptr}
360 PyVarObject_HEAD_INIT(
nullptr, 0)
379 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