Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Interface0D/BPy_CurvePoint.h
| Show All 31 Lines | |||||
| extern PyTypeObject CurvePoint_Type; | extern PyTypeObject CurvePoint_Type; | ||||
| #define BPy_CurvePoint_Check(v) (PyObject_IsInstance((PyObject *)v, (PyObject *)&CurvePoint_Type)) | #define BPy_CurvePoint_Check(v) (PyObject_IsInstance((PyObject *)v, (PyObject *)&CurvePoint_Type)) | ||||
| /*---------------------------Python BPy_CurvePoint structure definition----------*/ | /*---------------------------Python BPy_CurvePoint structure definition----------*/ | ||||
| typedef struct { | typedef struct { | ||||
| BPy_Interface0D py_if0D; | BPy_Interface0D py_if0D; | ||||
| CurvePoint *cp; | Freestyle::CurvePoint *cp; | ||||
| } BPy_CurvePoint; | } BPy_CurvePoint; | ||||
| /////////////////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////////////////// | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||