Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/ep_sampler_affineifs.py
diff options
context:
space:
mode:
authorNostalghia <b.vehikel@googlemail.com>2010-05-22 13:52:30 (GMT)
committer Nostalghia <b.vehikel@googlemail.com>2010-05-22 13:52:30 (GMT)
commite24ca571a8dccf66740d66e50b47862b5e28adc9 (patch)
treec65719efcd250439c45c96537f4e49654c51d145 /ep_sampler_affineifs.py
parent8394595622cbeb9894da9e83fd3dadacd6266cf6 (diff)
Bug fixing the mask modifier and border modifier in the rendering engine.
This is not backward compatible.
Diffstat (limited to 'ep_sampler_affineifs.py')
-rw-r--r--ep_sampler_affineifs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ep_sampler_affineifs.py b/ep_sampler_affineifs.py
index b88d312..f7abd1c 100644
--- a/ep_sampler_affineifs.py
+++ b/ep_sampler_affineifs.py
@@ -427,7 +427,7 @@ class AffineIfsSampler(model_allele.Allele):
tnumber = self._iterate()
x_rel = (self.x_point - self.xmin) / x_delta
y_rel = (self.y_point - self.ymin) / y_delta
- #TODO dritter parameter sample_points.append( (x_rel-0.5, y_rel-0.5, tnumber) )
+#TODO dritter parameter sample_points.append( (x_rel-0.5, y_rel-0.5, tnumber) )
sample_points.append( (x_rel-0.5, y_rel-0.5) )
loop += 1
return sample_points