Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Interface1D/Curve/BPy_Chain.h
| Show All 31 Lines | |||||
| extern PyTypeObject Chain_Type; | extern PyTypeObject Chain_Type; | ||||
| #define BPy_Chain_Check(v) (PyObject_IsInstance((PyObject *)v, (PyObject *)&Chain_Type)) | #define BPy_Chain_Check(v) (PyObject_IsInstance((PyObject *)v, (PyObject *)&Chain_Type)) | ||||
| /*---------------------------Python BPy_Chain structure definition----------*/ | /*---------------------------Python BPy_Chain structure definition----------*/ | ||||
| typedef struct { | typedef struct { | ||||
| BPy_FrsCurve py_c; | BPy_FrsCurve py_c; | ||||
| Chain *c; | Freestyle::Chain *c; | ||||
| } BPy_Chain; | } BPy_Chain; | ||||
| /////////////////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////////////////// | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||