Made appropriate changes according to the fix in Revision 19287 concerning the IntegrationType type.

This commit is contained in:
Tamito Kajiyama 2009-03-14 13:23:35 +00:00
parent f38183d6b4
commit c49bdd1a14

@ -34,9 +34,9 @@ from PredicatesB1D import *
from PredicatesU1D import * from PredicatesU1D import *
from shaders 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() bpred = TrueBP1D()
upred = AndUP1D(QuantitativeInvisibilityUP1D(0), pyHighViewMapDensityUP1D(0.3,4))
Operators.bidirectionalChain(ChainPredicateIterator(upred, bpred), NotUP1D(QuantitativeInvisibilityUP1D(0))) Operators.bidirectionalChain(ChainPredicateIterator(upred, bpred), NotUP1D(QuantitativeInvisibilityUP1D(0)))
shaders_list = [ shaders_list = [
ConstantThicknessShader(2), ConstantThicknessShader(2),