Differential D9170 Diff 29819 source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSmooth.cpp
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSmooth.cpp
| Show All 33 Lines | |||||
| PyDoc_STRVAR(FEdgeSmooth_doc, | PyDoc_STRVAR(FEdgeSmooth_doc, | ||||
| "Class hierarchy: :class:`Interface1D` > :class:`FEdge` > :class:`FEdgeSmooth`\n" | "Class hierarchy: :class:`Interface1D` > :class:`FEdge` > :class:`FEdgeSmooth`\n" | ||||
| "\n" | "\n" | ||||
| "Class defining a smooth edge. This kind of edge typically runs across\n" | "Class defining a smooth edge. This kind of edge typically runs across\n" | ||||
| "a face of the input mesh. It can be a silhouette, a ridge or valley,\n" | "a face of the input mesh. It can be a silhouette, a ridge or valley,\n" | ||||
| "a suggestive contour.\n" | "a suggestive contour.\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:`FEdgeSmooth` using the default constructor,\n" | ||||
| "\n" | " copy constructor, or between two :class:`SVertex`.\n" | ||||
| ".. method:: __init__(brother)\n" | |||||
| "\n" | |||||
| " Copy constructor.\n" | |||||
| "\n" | "\n" | ||||
| " :arg brother: An FEdgeSmooth object.\n" | " :arg brother: An FEdgeSmooth object.\n" | ||||
| " :type brother: :class:`FEdgeSmooth`\n" | " :type brother: :class:`FEdgeSmooth`\n" | ||||
| "\n" | |||||
| ".. method:: __init__(first_vertex, second_vertex)\n" | |||||
| "\n" | |||||
| " Builds an FEdgeSmooth going from the first 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 FEdgeSmooth_init(BPy_FEdgeSmooth *self, PyObject *args, PyObject *kwds) | static int FEdgeSmooth_init(BPy_FEdgeSmooth *self, PyObject *args, PyObject *kwds) | ||||
| { | { | ||||
| static const char *kwlist_1[] = {"brother", NULL}; | static const char *kwlist_1[] = {"brother", NULL}; | ||||
| ▲ Show 20 Lines • Show All 234 Lines • Show Last 20 Lines | |||||