Differential D10351 Diff 33717 source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec3f.h
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec3f.h
| Show All 17 Lines | |||||
| * \ingroup freestyle | * \ingroup freestyle | ||||
| */ | */ | ||||
| #pragma once | #pragma once | ||||
| #include "../BPy_UnaryFunction0D.h" | #include "../BPy_UnaryFunction0D.h" | ||||
| #include "../../geometry/Geom.h" | #include "../../geometry/Geom.h" | ||||
| using namespace Geometry; | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| /////////////////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////////////////// | ||||
| extern PyTypeObject UnaryFunction0DVec3f_Type; | extern PyTypeObject UnaryFunction0DVec3f_Type; | ||||
| #define BPy_UnaryFunction0DVec3f_Check(v) \ | #define BPy_UnaryFunction0DVec3f_Check(v) \ | ||||
| (PyObject_IsInstance((PyObject *)v, (PyObject *)&UnaryFunction0DVec3f_Type)) | (PyObject_IsInstance((PyObject *)v, (PyObject *)&UnaryFunction0DVec3f_Type)) | ||||
| /*---------------------------Python BPy_UnaryFunction0DVec3f structure definition----------*/ | /*---------------------------Python BPy_UnaryFunction0DVec3f structure definition----------*/ | ||||
| typedef struct { | typedef struct { | ||||
| BPy_UnaryFunction0D py_uf0D; | BPy_UnaryFunction0D py_uf0D; | ||||
| UnaryFunction0D<Vec3f> *uf0D_vec3f; | Freestyle::UnaryFunction0D<Freestyle::Geometry::Vec3f> *uf0D_vec3f; | ||||
| } BPy_UnaryFunction0DVec3f; | } BPy_UnaryFunction0DVec3f; | ||||
| /*---------------------------Python BPy_UnaryFunction0DVec3f visible prototypes-----------*/ | /*---------------------------Python BPy_UnaryFunction0DVec3f visible prototypes-----------*/ | ||||
| int UnaryFunction0DVec3f_Init(PyObject *module); | int UnaryFunction0DVec3f_Init(PyObject *module); | ||||
| /////////////////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////////////////// | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||