Differential D9170 Diff 29819 source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSharp.cpp
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSharp.cpp
| Show All 36 Lines | PyDoc_STRVAR(FEdgeSharp_doc, | ||||
| "Class defining a sharp FEdge. A Sharp FEdge corresponds to an initial\n" | "Class defining a sharp FEdge. A Sharp FEdge corresponds to an initial\n" | ||||
| "edge of the input mesh. It can be a silhouette, a crease or a border.\n" | "edge of the input mesh. It can be a silhouette, a crease or a border.\n" | ||||
| "If it is a crease edge, then it is bordered by two faces of the mesh.\n" | "If it is a crease edge, then it is bordered by two faces of the mesh.\n" | ||||
| "Face a lies on its right whereas Face b lies on its left. If it is a\n" | "Face a lies on its right whereas Face b lies on its left. If it is a\n" | ||||
| "border edge, then it doesn't have any face on its right, and thus Face\n" | "border edge, then it doesn't have any face on its right, and thus Face\n" | ||||
| "a is None.\n" | "a is None.\n" | ||||
| "\n" | "\n" | ||||
| ".. method:: __init__()\n" | ".. method:: __init__()\n" | ||||
| " __init__(brother)\n" | |||||
| " __init__(first_vertex, second_vertex)\n" | |||||
| "\n" | "\n" | ||||
| " Default constructor.\n" | " Builds an :class:`FEdgeSharp` using the default constructor,\n" | ||||
| "\n" | " copy constructor, or between two :class:`SVertex` objects.\n" | ||||
| ".. method:: __init__(brother)\n" | |||||
| "\n" | |||||
| " Copy constructor.\n" | |||||
| "\n" | "\n" | ||||
| " :arg brother: An FEdgeSharp object.\n" | " :arg brother: An FEdgeSharp object.\n" | ||||
| " :type brother: :class:`FEdgeSharp`\n" | " :type brother: :class:`FEdgeSharp`\n" | ||||
| "\n" | |||||
| ".. method:: __init__(first_vertex, second_vertex)\n" | |||||
| "\n" | |||||
| " Builds an FEdgeSharp going from the first vertex to the second.\n" | |||||
| "\n" | |||||
| " :arg first_vertex: The first SVertex object.\n" | " :arg first_vertex: The first SVertex object.\n" | ||||
| " :type first_vertex: :class:`SVertex`\n" | " :type first_vertex: :class:`SVertex`\n" | ||||
| " :arg second_vertex: The second SVertex object.\n" | " :arg second_vertex: The second SVertex object.\n" | ||||
| " :type second_vertex: :class:`SVertex`"); | " :type second_vertex: :class:`SVertex`"); | ||||
| static int FEdgeSharp_init(BPy_FEdgeSharp *self, PyObject *args, PyObject *kwds) | static int FEdgeSharp_init(BPy_FEdgeSharp *self, PyObject *args, PyObject *kwds) | ||||
| { | { | ||||
| static const char *kwlist_1[] = {"brother", NULL}; | static const char *kwlist_1[] = {"brother", NULL}; | ||||
| ▲ Show 20 Lines • Show All 390 Lines • Show Last 20 Lines | |||||