This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/freestyle/intern/python/BPy_ViewShape.h

35 lines
853 B
C++
Raw Normal View History

#ifndef FREESTYLE_PYTHON_VIEWSHAPE_H
#define FREESTYLE_PYTHON_VIEWSHAPE_H
#include "../view_map/ViewMap.h"
#ifdef __cplusplus
extern "C" {
#endif
///////////////////////////////////////////////////////////////////////////////////////////
#include <Python.h>
extern PyTypeObject ViewShape_Type;
#define BPy_ViewShape_Check(v) ( PyObject_IsInstance( (PyObject *) v, (PyObject *) &ViewShape_Type) )
/*---------------------------Python BPy_ViewShape structure definition----------*/
typedef struct {
PyObject_HEAD
ViewShape *vs;
} BPy_ViewShape;
/*---------------------------Python BPy_ViewShape visible prototypes-----------*/
PyMODINIT_FUNC ViewShape_Init( PyObject *module );
///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif
#endif /* FREESTYLE_PYTHON_VIEWSHAPE_H */