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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-03-20 00:16:13 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-03-20 00:16:13 +0400
commit21dc9660d93f10b271b0d75425484aec588706c2 (patch)
tree043afd7670925a2edd07b5ac479cabfd13b1a910 /release/scripts/freestyle
parentab8c8374709808bf796530170f101f5336eb598d (diff)
Fix for missing imported classes in style_modules/contour.py.
Identified by Campbell Barton through a code review of the Freestyle branch.
Diffstat (limited to 'release/scripts/freestyle')
-rw-r--r--release/scripts/freestyle/style_modules/contour.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/release/scripts/freestyle/style_modules/contour.py b/release/scripts/freestyle/style_modules/contour.py
index 63a4a2498fe..e4eb8c2c3ae 100644
--- a/release/scripts/freestyle/style_modules/contour.py
+++ b/release/scripts/freestyle/style_modules/contour.py
@@ -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()