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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/python/Interface0D/CurvePoint.h')
-rw-r--r--source/blender/freestyle/intern/python/Interface0D/CurvePoint.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/python/Interface0D/CurvePoint.h b/source/blender/freestyle/intern/python/Interface0D/CurvePoint.h
index 096de2efed3..ac30f74c4dd 100644
--- a/source/blender/freestyle/intern/python/Interface0D/CurvePoint.h
+++ b/source/blender/freestyle/intern/python/Interface0D/CurvePoint.h
@@ -2,7 +2,7 @@
#define FREESTYLE_PYTHON_CURVEPOINT_H
#include "../Interface0D.h"
-
+#include "../../stroke/Curve.h"
#ifdef __cplusplus
extern "C" {
@@ -20,6 +20,7 @@ extern PyTypeObject CurvePoint_Type;
/*---------------------------Python BPy_CurvePoint structure definition----------*/
typedef struct {
BPy_Interface0D py_if0D;
+ CurvePoint *cp;
} BPy_CurvePoint;
///////////////////////////////////////////////////////////////////////////////////////////