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`\n");
52 static const char *kwlist_1[] = {
"brother",
nullptr};
53 static const char *kwlist_2[] = {
"first_vertex",
"second_vertex",
nullptr};
54 PyObject *obj1 =
nullptr, *obj2 =
nullptr;
56 if (PyArg_ParseTupleAndKeywords(args, kwds,
"|O!", (
char **)kwlist_1, &
FEdge_Type, &obj1)) {
64 else if ((
void)PyErr_Clear(),
65 PyArg_ParseTupleAndKeywords(
71 PyErr_SetString(PyExc_TypeError,
"invalid argument(s)");
75 self->py_if1D.borrowed =
false;
91 if (
ELEM(keynum, 0, 1)) {
98 PyErr_Format(PyExc_IndexError,
"FEdge[index]: index %d out of range", keynum);
119 FEdge_first_svertex_doc,
120 "The first SVertex constituting this FEdge.\n"
122 ":type: :class:`SVertex`\n");
135 PyErr_SetString(PyExc_TypeError,
"value must be an SVertex");
144 FEdge_second_svertex_doc,
145 "The second SVertex constituting this FEdge.\n"
147 ":type: :class:`SVertex`\n");
160 PyErr_SetString(PyExc_TypeError,
"value must be an SVertex");
169 FEdge_next_fedge_doc,
170 "The FEdge following this one in the ViewEdge. The value is None if\n"
171 "this FEdge is the last of the ViewEdge.\n"
173 ":type: :class:`FEdge`\n");
186 PyErr_SetString(PyExc_TypeError,
"value must be an FEdge");
195 FEdge_previous_fedge_doc,
196 "The FEdge preceding this one in the ViewEdge. The value is None if\n"
197 "this FEdge is the first one of the ViewEdge.\n"
199 ":type: :class:`FEdge`\n");
212 PyErr_SetString(PyExc_TypeError,
"value must be an FEdge");
222 "The ViewEdge to which this FEdge belongs to.\n"
224 ":type: :class:`ViewEdge`\n");
237 PyErr_SetString(PyExc_TypeError,
"value must be an ViewEdge");
247 "True if this FEdge is a smooth FEdge.\n"
257 if (!PyBool_Check(value)) {
258 PyErr_SetString(PyExc_TypeError,
"value must be boolean");
268 "The Id of this FEdge.\n"
270 ":type: :class:`Id`\n");
280 PyErr_SetString(PyExc_TypeError,
"value must be an Id");
290 "The nature of this FEdge.\n"
292 ":type: :class:`Nature`\n");
301 PyErr_SetString(PyExc_TypeError,
"value must be a Nature");
304 self->fe->setNature(PyLong_AsLong((PyObject *)&((
BPy_Nature *)value)->
i));
312 FEdge_first_svertex_doc,
317 FEdge_second_svertex_doc,
322 FEdge_next_fedge_doc,
327 FEdge_previous_fedge_doc,
341 {
nullptr,
nullptr,
nullptr,
nullptr,
nullptr}
347 PyVarObject_HEAD_INIT(
nullptr, 0)
366 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`\n")
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