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