aboutsummaryrefslogtreecommitdiff
path: root/pixelmappers/GaussianMapper.py
diff options
context:
space:
mode:
authorGravatar rcoh <rcoh@mit.edu>2010-12-20 14:50:08 -0500
committerGravatar rcoh <rcoh@mit.edu>2010-12-20 14:50:08 -0500
commit2736307c1d6d67868ca54a3df951f9e959efedd0 (patch)
tree50a61c798d52987f8fe575f678aaff5b5b9455b9 /pixelmappers/GaussianMapper.py
parent7386cbc7ce48e3996d92d84cff3d1a4dab8f538d (diff)
Util cleanup is done! Util.py is now refactored into the util module. Woo! RCOH
Diffstat (limited to 'pixelmappers/GaussianMapper.py')
-rw-r--r--pixelmappers/GaussianMapper.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pixelmappers/GaussianMapper.py b/pixelmappers/GaussianMapper.py
index 04bd447..e94235e 100644
--- a/pixelmappers/GaussianMapper.py
+++ b/pixelmappers/GaussianMapper.py
@@ -1,4 +1,5 @@
from operationscore.PixelMapper import *
+import util.Geo as Geo
import Util
class GaussianMapper(PixelMapper):
def mappingFunction(self, eventLocation, screen):
@@ -6,8 +7,8 @@ class GaussianMapper(PixelMapper):
[x,y] = eventLocation
for (x,pixel) in screen.pixelsInRange(x-self['CutoffDist'], \
x+self['CutoffDist']):
- pixelDist = Util.dist(pixel.location, eventLocation)
+ pixelDist = Geo.dist(pixel.location, eventLocation)
if pixelDist < self['CutoffDist']:
- w = Util.gaussian(pixelDist, self['Height'], 0, self['Width'])
+ w = Geo.gaussian(pixelDist, self['Height'], 0, self['Width'])
returnPixels.append((pixel, w))
return returnPixels