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

32 lines
698 B
C++
Raw Normal View History

#ifndef FREESTYLE_PYTHON_CURVE_H
#define FREESTYLE_PYTHON_CURVE_H
#include "../BPy_Interface1D.h"
#include "../../stroke/Curve.h"
#ifdef __cplusplus
extern "C" {
#endif
///////////////////////////////////////////////////////////////////////////////////////////
#include <Python.h>
extern PyTypeObject Curve_Type;
#define BPy_Curve_Check(v) (( (PyObject *) v)->ob_type == &Curve_Type)
/*---------------------------Python BPy_Curve structure definition----------*/
typedef struct {
BPy_Interface1D py_if1D;
Curve *c;
} BPy_Curve;
///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif
#endif /* FREESTYLE_PYTHON_CURVE_H */