#ifndef FREESTYLE_PYTHON_ORIENTEDVIEWEDGEITERATOR_H #define FREESTYLE_PYTHON_ORIENTEDVIEWEDGEITERATOR_H #include "../../stroke/Stroke.h" #include "../../view_map/ViewMapIterators.h" #include "../BPy_Iterator.h" #ifdef __cplusplus extern "C" { #endif /////////////////////////////////////////////////////////////////////////////////////////// #include extern PyTypeObject orientedViewEdgeIterator_Type; #define BPy_orientedViewEdgeIterator_Check(v) ( PyObject_IsInstance( (PyObject *) v, (PyObject *) &orientedViewEdgeIterator_Type) ) /*---------------------------Python BPy_orientedViewEdgeIterator structure definition----------*/ typedef struct { BPy_Iterator py_it; ViewVertexInternal::orientedViewEdgeIterator *ove_it; int reversed; } BPy_orientedViewEdgeIterator; /////////////////////////////////////////////////////////////////////////////////////////// #ifdef __cplusplus } #endif #endif /* FREESTYLE_PYTHON_ORIENTEDVIEWEDGEITERATOR_H */