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:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-07-27 01:47:39 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-07-27 01:47:39 +0400
commit0c64c49d2f930aed4ef310c2331bc3df0932cbe2 (patch)
treee863274f8326a9735dfe03cd5e7c580cd33a08cc /source/blender/freestyle/intern/python/BPy_Freestyle.cpp
parent5718639a79b51241f348eb241d2379ade06cd787 (diff)
soc-2008-mxcurioni: added (but did not test) ViewMap and Noise classes. Updated ViewShape class accordingly
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_Freestyle.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_Freestyle.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_Freestyle.cpp b/source/blender/freestyle/intern/python/BPy_Freestyle.cpp
index 13164d0a153..ed35a85068b 100644
--- a/source/blender/freestyle/intern/python/BPy_Freestyle.cpp
+++ b/source/blender/freestyle/intern/python/BPy_Freestyle.cpp
@@ -7,11 +7,11 @@
#include "BPy_Id.h"
#include "BPy_IntegrationType.h"
#include "BPy_Interface0D.h"
-#include "BPy_Iterator.h"
-#include "Interface0D/BPy_CurvePoint.h"
#include "BPy_Interface1D.h"
+#include "BPy_Iterator.h"
#include "BPy_MediumType.h"
#include "BPy_Nature.h"
+#include "BPy_Noise.h"
#include "BPy_SShape.h"
#include "BPy_StrokeAttribute.h"
#include "BPy_StrokeShader.h"
@@ -19,6 +19,7 @@
#include "BPy_UnaryFunction1D.h"
#include "BPy_UnaryPredicate0D.h"
#include "BPy_UnaryPredicate1D.h"
+#include "BPy_ViewMap.h"
#include "BPy_ViewShape.h"
@@ -151,6 +152,7 @@ PyObject *Freestyle_Init( void )
Interface0D_Init( module );
Interface1D_Init( module );
Iterator_Init( module );
+ Noise_Init( module );
SShape_Init( module );
StrokeAttribute_Init( module );
StrokeShader_Init( module );
@@ -158,8 +160,9 @@ PyObject *Freestyle_Init( void )
UnaryFunction1D_Init( module );
UnaryPredicate0D_Init( module );
UnaryPredicate1D_Init( module );
+ ViewMap_Init( module );
ViewShape_Init( module );
-
+
return module;
}