Differential D9170 Diff 29818 source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.cpp
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.cpp
| Show All 33 Lines | PyDoc_STRVAR(orientedViewEdgeIterator_doc, | ||||
| "Class hierarchy: :class:`Iterator` > :class:`orientedViewEdgeIterator`\n" | "Class hierarchy: :class:`Iterator` > :class:`orientedViewEdgeIterator`\n" | ||||
| "\n" | "\n" | ||||
| "Class representing an iterator over oriented ViewEdges around a\n" | "Class representing an iterator over oriented ViewEdges around a\n" | ||||
| ":class:`ViewVertex`. This iterator allows a CCW iteration (in the image\n" | ":class:`ViewVertex`. This iterator allows a CCW iteration (in the image\n" | ||||
| "plane). An instance of an orientedViewEdgeIterator can only be\n" | "plane). An instance of an orientedViewEdgeIterator can only be\n" | ||||
| "obtained from a ViewVertex by calling edges_begin() or edges_end().\n" | "obtained from a ViewVertex by calling edges_begin() or edges_end().\n" | ||||
| "\n" | "\n" | ||||
| ".. method:: __init__()\n" | ".. method:: __init__()\n" | ||||
| " __init__(iBrother)\n" | |||||
| "\n" | "\n" | ||||
| " Default constructor.\n" | " Creates an :class:`orientedViewEdgeIterator` using either the\n" | ||||
| "\n" | " default constructor or the copy constructor.\n" | ||||
| ".. method:: __init__(iBrother)\n" | |||||
| "\n" | |||||
| " Copy constructor.\n" | |||||
| "\n" | "\n" | ||||
| " :arg iBrother: An orientedViewEdgeIterator object.\n" | " :arg iBrother: An orientedViewEdgeIterator object.\n" | ||||
| " :type iBrother: :class:`orientedViewEdgeIterator`"); | " :type iBrother: :class:`orientedViewEdgeIterator`"); | ||||
| static int orientedViewEdgeIterator_init(BPy_orientedViewEdgeIterator *self, | static int orientedViewEdgeIterator_init(BPy_orientedViewEdgeIterator *self, | ||||
| PyObject *args, | PyObject *args, | ||||
| PyObject *kwds) | PyObject *kwds) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 133 Lines • Show Last 20 Lines | |||||