Differential D10351 Diff 33677 source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.h
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.h
| Show All 32 Lines | |||||
| extern PyTypeObject orientedViewEdgeIterator_Type; | extern PyTypeObject orientedViewEdgeIterator_Type; | ||||
| #define BPy_orientedViewEdgeIterator_Check(v) \ | #define BPy_orientedViewEdgeIterator_Check(v) \ | ||||
| (PyObject_IsInstance((PyObject *)v, (PyObject *)&orientedViewEdgeIterator_Type)) | (PyObject_IsInstance((PyObject *)v, (PyObject *)&orientedViewEdgeIterator_Type)) | ||||
| /*---------------------------Python BPy_orientedViewEdgeIterator structure definition----------*/ | /*---------------------------Python BPy_orientedViewEdgeIterator structure definition----------*/ | ||||
| typedef struct { | typedef struct { | ||||
| BPy_Iterator py_it; | BPy_Iterator py_it; | ||||
| ViewVertexInternal::orientedViewEdgeIterator *ove_it; | Freestyle::ViewVertexInternal::orientedViewEdgeIterator *ove_it; | ||||
| bool reversed; | bool reversed; | ||||
| bool at_start; | bool at_start; | ||||
| } BPy_orientedViewEdgeIterator; | } BPy_orientedViewEdgeIterator; | ||||
| /////////////////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////////////////// | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||