Differential D9170 Diff 29817 source/blender/freestyle/intern/python/Iterator/BPy_StrokeVertexIterator.cpp
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Iterator/BPy_StrokeVertexIterator.cpp
| Show First 20 Lines • Show All 42 Lines • ▼ Show 20 Lines | PyDoc_STRVAR(StrokeVertexIterator_doc, | ||||
| "resides in the object access: an Interface0DIterator only allows\n" | "resides in the object access: an Interface0DIterator only allows\n" | ||||
| "access to an Interface0D while one might need to access the\n" | "access to an Interface0D while one might need to access the\n" | ||||
| "specialized StrokeVertex type. In this case, one should use a\n" | "specialized StrokeVertex type. In this case, one should use a\n" | ||||
| "StrokeVertexIterator. To call functions of the UnaryFuntion0D type,\n" | "StrokeVertexIterator. To call functions of the UnaryFuntion0D type,\n" | ||||
| "a StrokeVertexIterator can be converted to an Interface0DIterator by\n" | "a StrokeVertexIterator can be converted to an Interface0DIterator by\n" | ||||
| "by calling Interface0DIterator(it).\n" | "by calling Interface0DIterator(it).\n" | ||||
| "\n" | "\n" | ||||
| ".. method:: __init__()\n" | ".. method:: __init__()\n" | ||||
| " __init__(brother)\n" | |||||
| "\n" | "\n" | ||||
| " Default constructor.\n" | " Creates a :class:`StrokeVertexIterator` using either the\n" | ||||
| "\n" | " default constructor or the copy constructor.\n" | ||||
| ".. method:: __init__(brother)\n" | |||||
| "\n" | |||||
| " Copy constructor.\n" | |||||
| "\n" | "\n" | ||||
| " :arg brother: A StrokeVertexIterator object.\n" | " :arg brother: A StrokeVertexIterator object.\n" | ||||
| " :type brother: :class:`StrokeVertexIterator`"); | " :type brother: :class:`StrokeVertexIterator`"); | ||||
| static int StrokeVertexIterator_init(BPy_StrokeVertexIterator *self, | static int StrokeVertexIterator_init(BPy_StrokeVertexIterator *self, | ||||
| PyObject *args, | PyObject *args, | ||||
| PyObject *kwds) | PyObject *kwds) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 265 Lines • Show Last 20 Lines | |||||