[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [19288] branches/soc-2008-mxcurioni/ release/scripts/freestyle/style_modules/apriori_and_causal_density.py: Made appropriate changes according to the fix in Revision 19287 concerning the IntegrationType type .

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Sat Mar 14 14:23:35 CET 2009


Revision: 19288
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=19288
Author:   kjym3
Date:     2009-03-14 14:23:35 +0100 (Sat, 14 Mar 2009)

Log Message:
-----------
Made appropriate changes according to the fix in Revision 19287 concerning the IntegrationType type.

Revision Links:
--------------
    http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=19287

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

Modified: branches/soc-2008-mxcurioni/release/scripts/freestyle/style_modules/apriori_and_causal_density.py
===================================================================
--- branches/soc-2008-mxcurioni/release/scripts/freestyle/style_modules/apriori_and_causal_density.py	2009-03-14 13:20:06 UTC (rev 19287)
+++ branches/soc-2008-mxcurioni/release/scripts/freestyle/style_modules/apriori_and_causal_density.py	2009-03-14 13:23:35 UTC (rev 19288)
@@ -34,9 +34,9 @@
 from PredicatesU1D import *
 from shaders import *
 
-Operators.select(AndUP1D(QuantitativeInvisibilityUP1D(0), pyHighViewMapDensityUP1D(0.3,4) ) )
+upred = AndUP1D(QuantitativeInvisibilityUP1D(0), pyHighViewMapDensityUP1D(0.3, IntegrationType.LAST))
+Operators.select(upred)
 bpred = TrueBP1D()
-upred = AndUP1D(QuantitativeInvisibilityUP1D(0), pyHighViewMapDensityUP1D(0.3,4))
 Operators.bidirectionalChain(ChainPredicateIterator(upred, bpred), NotUP1D(QuantitativeInvisibilityUP1D(0)))
 shaders_list = 	[
 		ConstantThicknessShader(2), 





More information about the Bf-blender-cvs mailing list