Differential D9170 Diff 29819 source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp
| Show All 35 Lines | PyDoc_STRVAR( | ||||
| "Class hierarchy: :class:`Iterator` > :class:`AdjacencyIterator`\n" | "Class hierarchy: :class:`Iterator` > :class:`AdjacencyIterator`\n" | ||||
| "\n" | "\n" | ||||
| "Class for representing adjacency iterators used in the chaining\n" | "Class for representing adjacency iterators used in the chaining\n" | ||||
| "process. An AdjacencyIterator is created in the increment() and\n" | "process. An AdjacencyIterator is created in the increment() and\n" | ||||
| "decrement() methods of a :class:`ChainingIterator` and passed to the\n" | "decrement() methods of a :class:`ChainingIterator` and passed to the\n" | ||||
| "traverse() method of the ChainingIterator.\n" | "traverse() method of the ChainingIterator.\n" | ||||
| "\n" | "\n" | ||||
| ".. method:: __init__()\n" | ".. method:: __init__()\n" | ||||
| " __init__(brother)\n" | |||||
| " __init__(vertex, restrict_to_selection=True, restrict_to_unvisited=True)\n" | |||||
| "\n" | "\n" | ||||
| " Default constructor.\n" | " Builds an :class:`AdjacencyIterator` using the default constructor,\n" | ||||
| "\n" | " copy constructor or the overloaded constructor.\n" | ||||
| ".. method:: __init__(brother)\n" | |||||
| "\n" | |||||
| " Copy constructor.\n" | |||||
| "\n" | "\n" | ||||
| " :arg brother: An AdjacencyIterator object.\n" | " :arg brother: An AdjacencyIterator object.\n" | ||||
| " :type brother: :class:`AdjacencyIterator`\n" | " :type brother: :class:`AdjacencyIterator`\n" | ||||
| "\n" | |||||
| ".. method:: __init__(vertex, restrict_to_selection=True, restrict_to_unvisited=True)\n" | |||||
| "\n" | |||||
| " Builds a AdjacencyIterator object.\n" | |||||
| "\n" | |||||
| " :arg vertex: The vertex which is the next crossing.\n" | " :arg vertex: The vertex which is the next crossing.\n" | ||||
| " :type vertex: :class:`ViewVertex`\n" | " :type vertex: :class:`ViewVertex`\n" | ||||
| " :arg restrict_to_selection: Indicates whether to force the chaining\n" | " :arg restrict_to_selection: Indicates whether to force the chaining\n" | ||||
| " to stay within the set of selected ViewEdges or not.\n" | " to stay within the set of selected ViewEdges or not.\n" | ||||
| " :type restrict_to_selection: bool\n" | " :type restrict_to_selection: bool\n" | ||||
| " :arg restrict_to_unvisited: Indicates whether a ViewEdge that has\n" | " :arg restrict_to_unvisited: Indicates whether a ViewEdge that has\n" | ||||
| " already been chained must be ignored ot not.\n" | " already been chained must be ignored ot not.\n" | ||||
| " :type restrict_to_unvisited: bool"); | " :type restrict_to_unvisited: bool"); | ||||
| ▲ Show 20 Lines • Show All 169 Lines • Show Last 20 Lines | |||||