Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BPy_GetOccludersF0D.h « UnaryFunction0D_vector_ViewShape « UnaryFunction0D « python « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e92158a2e783277d1804cbbd97112d4037f9c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef FREESTYLE_PYTHON_GETOCCLUDERSF0D_H
#define FREESTYLE_PYTHON_GETOCCLUDERSF0D_H

#include "../BPy_UnaryFunction0DVectorViewShape.h"

#ifdef __cplusplus
extern "C" {
#endif

///////////////////////////////////////////////////////////////////////////////////////////

#include <Python.h>

extern PyTypeObject GetOccludersF0D_Type;

#define BPy_GetOccludersF0D_Check(v)	(  PyObject_IsInstance( (PyObject *) v, (PyObject *) &GetOccludersF0D_Type)  )

/*---------------------------Python BPy_GetOccludersF0D structure definition----------*/
typedef struct {
	BPy_UnaryFunction0DVectorViewShape py_uf0D_vectorviewshape;
} BPy_GetOccludersF0D;


///////////////////////////////////////////////////////////////////////////////////////////

#ifdef __cplusplus
}
#endif

#endif /* FREESTYLE_PYTHON_GETOCCLUDERSF0D_H */