soc-2008-mxcurioni: added (without testing) the following classes: BBox, SShape, ViewShape. Also corrected a few typos (Get#->get#).

This commit is contained in:
Maxime Curioni
2008-07-24 08:29:48 +00:00
parent dd899939da
commit a0359c3750
38 changed files with 1611 additions and 507 deletions

View File

@@ -0,0 +1,34 @@
#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 *) v)->ob_type == &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 */