Differential D10351 Diff 33717 source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DFloat.h
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DFloat.h
| Show All 30 Lines | |||||
| extern PyTypeObject UnaryFunction1DFloat_Type; | extern PyTypeObject UnaryFunction1DFloat_Type; | ||||
| #define BPy_UnaryFunction1DFloat_Check(v) \ | #define BPy_UnaryFunction1DFloat_Check(v) \ | ||||
| (PyObject_IsInstance((PyObject *)v, (PyObject *)&UnaryFunction1DFloat_Type)) | (PyObject_IsInstance((PyObject *)v, (PyObject *)&UnaryFunction1DFloat_Type)) | ||||
| /*---------------------------Python BPy_UnaryFunction1DFloat structure definition----------*/ | /*---------------------------Python BPy_UnaryFunction1DFloat structure definition----------*/ | ||||
| typedef struct { | typedef struct { | ||||
| BPy_UnaryFunction1D py_uf1D; | BPy_UnaryFunction1D py_uf1D; | ||||
| UnaryFunction1D<float> *uf1D_float; | Freestyle::UnaryFunction1D<float> *uf1D_float; | ||||
| } BPy_UnaryFunction1DFloat; | } BPy_UnaryFunction1DFloat; | ||||
| /*---------------------------Python BPy_UnaryFunction1DFloat visible prototypes-----------*/ | /*---------------------------Python BPy_UnaryFunction1DFloat visible prototypes-----------*/ | ||||
| int UnaryFunction1DFloat_Init(PyObject *module); | int UnaryFunction1DFloat_Init(PyObject *module); | ||||
| /////////////////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////////////////// | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||