2008-07-26 02:33:21 +00:00
|
|
|
#ifndef FREESTYLE_PYTHON_FEDGESMOOTH_H
|
|
|
|
|
#define FREESTYLE_PYTHON_FEDGESMOOTH_H
|
|
|
|
|
|
|
|
|
|
#include "../BPy_FEdge.h"
|
|
|
|
|
#include "../../../view_map/Silhouette.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#include <Python.h>
|
|
|
|
|
|
|
|
|
|
extern PyTypeObject FEdgeSmooth_Type;
|
|
|
|
|
|
2008-07-29 05:45:16 +00:00
|
|
|
#define BPy_FEdgeSmooth_Check(v) ( PyObject_IsInstance( (PyObject *) v, (PyObject *) &FEdgeSmooth_Type) )
|
2008-07-26 02:33:21 +00:00
|
|
|
|
|
|
|
|
/*---------------------------Python BPy_FEdgeSmooth structure definition----------*/
|
|
|
|
|
typedef struct {
|
|
|
|
|
BPy_FEdge py_fe;
|
|
|
|
|
FEdgeSmooth *fes;
|
|
|
|
|
} BPy_FEdgeSmooth;
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* FREESTYLE_PYTHON_FEDGESMOOTH_H */
|