21 orientedViewEdgeIterator_doc,
22 "Class hierarchy: :class:`Iterator` > :class:`orientedViewEdgeIterator`\n"
24 "Class representing an iterator over oriented ViewEdges around a\n"
25 ":class:`ViewVertex`. This iterator allows a CCW iteration (in the image\n"
26 "plane). An instance of an orientedViewEdgeIterator can only be\n"
27 "obtained from a ViewVertex by calling edges_begin() or edges_end().\n"
29 ".. method:: __init__()\n"
30 " __init__(iBrother)\n"
32 " Creates an :class:`orientedViewEdgeIterator` using either the\n"
33 " default constructor or the copy constructor.\n"
35 " :arg iBrother: An orientedViewEdgeIterator object.\n"
36 " :type iBrother: :class:`orientedViewEdgeIterator`");
42 static const char *kwlist[] = {
"brother",
nullptr};
43 PyObject *brother =
nullptr;
45 if (!PyArg_ParseTupleAndKeywords(
52 self->at_start =
true;
53 self->reversed =
false;
68 self->at_start =
true;
69 return (PyObject *)
self;
75 if (
self->ove_it->isBegin()) {
76 PyErr_SetNone(PyExc_StopIteration);
79 self->ove_it->decrement();
82 if (
self->ove_it->isEnd()) {
83 PyErr_SetNone(PyExc_StopIteration);
87 self->at_start =
false;
90 self->ove_it->increment();
91 if (
self->ove_it->isEnd()) {
92 PyErr_SetNone(PyExc_StopIteration);
105 orientedViewEdgeIterator_object_doc,
106 "The oriented ViewEdge (i.e., a tuple of the pointed ViewEdge and a boolean\n"
107 "value) currently pointed to by this iterator. If the boolean value is true,\n"
108 "the ViewEdge is incoming.\n"
110 ":type: (:class:`ViewEdge`, bool)");
115 if (
self->ove_it->isEnd()) {
116 PyErr_SetString(PyExc_RuntimeError,
"iteration has stopped");
126 orientedViewEdgeIterator_object_doc,
128 {
nullptr,
nullptr,
nullptr,
nullptr,
nullptr}
134 PyVarObject_HEAD_INIT(
nullptr, 0)
135 "orientedViewEdgeIterator",
153 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
154 orientedViewEdgeIterator_doc,
PyObject * BPy_directedViewEdge_from_directedViewEdge(ViewVertex::directedViewEdge &dve)
PyTypeObject Iterator_Type
static PyObject * orientedViewEdgeIterator_object_get(BPy_orientedViewEdgeIterator *self, void *)
static int orientedViewEdgeIterator_init(BPy_orientedViewEdgeIterator *self, PyObject *args, PyObject *kwds)
PyDoc_STRVAR(orientedViewEdgeIterator_doc, "Class hierarchy: :class:`Iterator` > :class:`orientedViewEdgeIterator`\n" "\n" "Class representing an iterator over oriented ViewEdges around a\n" ":class:`ViewVertex`. This iterator allows a CCW iteration (in the image\n" "plane). An instance of an orientedViewEdgeIterator can only be\n" "obtained from a ViewVertex by calling edges_begin() or edges_end().\n" "\n" ".. method:: __init__()\n" " __init__(iBrother)\n" "\n" " Creates an :class:`orientedViewEdgeIterator` using either the\n" " default constructor or the copy constructor.\n" "\n" " :arg iBrother: An orientedViewEdgeIterator object.\n" " :type iBrother: :class:`orientedViewEdgeIterator`")
static PyObject * orientedViewEdgeIterator_iter(BPy_orientedViewEdgeIterator *self)
static PyObject * orientedViewEdgeIterator_iternext(BPy_orientedViewEdgeIterator *self)
PyTypeObject orientedViewEdgeIterator_Type
static PyGetSetDef BPy_orientedViewEdgeIterator_getseters[]
pair< ViewEdge *, bool > directedViewEdge