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-24 12:29:48 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-07-24 12:29:48 +0400
commita0359c37506d05589bae86e4818fa653c8f281ab (patch)
tree35927f22801fa65585ac6f076abb29406189dd2a /source/blender/freestyle/SConscript
parentdd899939dabae68564f7a1d1994b50ee2f2cf8be (diff)
soc-2008-mxcurioni: added (without testing) the following classes: BBox, SShape, ViewShape. Also corrected a few typos (Get#->get#).
Diffstat (limited to 'source/blender/freestyle/SConscript')
-rw-r--r--source/blender/freestyle/SConscript23
1 files changed, 17 insertions, 6 deletions
diff --git a/source/blender/freestyle/SConscript b/source/blender/freestyle/SConscript
index 3c9f2abebe3..ed6beefd337 100644
--- a/source/blender/freestyle/SConscript
+++ b/source/blender/freestyle/SConscript
@@ -62,27 +62,38 @@ prefix = 'intern/python'
python_sources = [
prefix + '/BPy_Freestyle.cpp',
prefix + '/BPy_Convert.cpp',
+ prefix + '/BPy_BBox.cpp',
prefix + '/BPy_BinaryPredicate0D.cpp',
prefix + '/BPy_BinaryPredicate1D.cpp',
prefix + '/BPy_Id.cpp',
prefix + '/BPy_IntegrationType.cpp',
prefix + '/BPy_Interface0D.cpp',
- prefix + '/Interface0D/BPy_CurvePoint.cpp',
- prefix + '/Interface0D/CurvePoint/BPy_StrokeVertex.cpp',
- prefix + '/Interface0D/BPy_SVertex.cpp',
- prefix + '/Interface0D/BPy_ViewVertex.cpp',
+ prefix + '/Interface0D/BPy_CurvePoint.cpp',
+ prefix + '/Interface0D/CurvePoint/BPy_StrokeVertex.cpp',
+ prefix + '/Interface0D/BPy_SVertex.cpp',
+ prefix + '/Interface0D/BPy_ViewVertex.cpp',
prefix + '/BPy_Interface1D.cpp',
- prefix + '/Interface1D/BPy_FEdge.cpp',
- prefix + '/Interface1D/BPy_Stroke.cpp',
+ prefix + '/Interface1D/BPy_FEdge.cpp',
+ prefix + '/Interface1D/BPy_Stroke.cpp',
+ prefix + '/Interface1D/BPy_ViewEdge.cpp',
prefix + '/BPy_Iterator.cpp',
+ prefix + '/Iterator/BPy_AdjacencyIterator.cpp',
+ prefix + '/Iterator/BPy_Interface0DIterator.cpp',
+ prefix + '/Iterator/BPy_CurvePointIterator.cpp',
+ prefix + '/Iterator/BPy_StrokeVertexIterator.cpp',
+ prefix + '/Iterator/BPy_SVertexIterator.cpp',
+ prefix + '/Iterator/BPy_orientedViewEdgeIterator.cpp',
+ prefix + '/Iterator/BPy_ViewEdgeIterator.cpp',
prefix + '/BPy_MediumType.cpp',
prefix + '/BPy_Nature.cpp',
+ prefix + '/BPy_SShape.cpp',
prefix + '/BPy_StrokeAttribute.cpp',
prefix + '/BPy_StrokeShader.cpp',
prefix + '/BPy_UnaryFunction0D.cpp',
prefix + '/BPy_UnaryFunction1D.cpp',
prefix + '/BPy_UnaryPredicate0D.cpp',
prefix + '/BPy_UnaryPredicate1D.cpp',
+ prefix + '/BPy_ViewShape.cpp'
]
sources = system_sources + image_sources + geometry_sources + scene_graph_sources \