[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [55425] branches/soc-2008-mxcurioni/ release/scripts/freestyle/style_modules/contour.py: Fix for missing imported classes in style_modules/contour.py.

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Tue Mar 19 21:16:14 CET 2013


Revision: 55425
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=55425
Author:   kjym3
Date:     2013-03-19 20:16:13 +0000 (Tue, 19 Mar 2013)
Log Message:
-----------
Fix for missing imported classes in style_modules/contour.py.
Identified by Campbell Barton through a code review of the Freestyle branch.

Modified Paths:
--------------
    branches/soc-2008-mxcurioni/release/scripts/freestyle/style_modules/contour.py

Modified: branches/soc-2008-mxcurioni/release/scripts/freestyle/style_modules/contour.py
===================================================================
--- branches/soc-2008-mxcurioni/release/scripts/freestyle/style_modules/contour.py	2013-03-19 19:37:22 UTC (rev 55424)
+++ branches/soc-2008-mxcurioni/release/scripts/freestyle/style_modules/contour.py	2013-03-19 20:16:13 UTC (rev 55425)
@@ -21,10 +21,9 @@
 #  Date     : 04/08/2005
 #  Purpose  : Draws each object's visible contour
 
-from Freestyle import BezierCurveShader, ChainSilhouetteIterator, ConstantThicknessShader, \
-    Operators, QuantitativeInvisibilityUP1D, TrueUP1D
-from logical_operators import NotUP1D
-from shaders import pyMaterialColorShader
+from Freestyle import ChainPredicateIterator, ConstantThicknessShader, ContourUP1D, IncreasingColorShader, \
+    Operators, QuantitativeInvisibilityUP1D, SameShapeIdBP1D, TrueUP1D
+from logical_operators import AndUP1D, NotUP1D
 
 Operators.select(AndUP1D(QuantitativeInvisibilityUP1D(0), ContourUP1D()))
 bpred = SameShapeIdBP1D()




More information about the Bf-blender-cvs mailing list