From b335b746523ffd59db1402b097a802b3fd99eaac Mon Sep 17 00:00:00 2001 From: rcoh Date: Wed, 8 Dec 2010 16:39:50 -0500 Subject: Code for the demo. Everything works afaik. Contains a couple more optimizations. Contains modify param behavior. Improved support for recursive hooks. Modifications to SmootCoreObject to get us closer to a fully multi-threaded system. This should be the last commit directly to master. All further commits should be on subranches and get merged. --- pixelmappers/GaussianMapper.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'pixelmappers') diff --git a/pixelmappers/GaussianMapper.py b/pixelmappers/GaussianMapper.py index 1cf9e88..04bd447 100644 --- a/pixelmappers/GaussianMapper.py +++ b/pixelmappers/GaussianMapper.py @@ -2,15 +2,12 @@ from operationscore.PixelMapper import * import Util class GaussianMapper(PixelMapper): def mappingFunction(self, eventLocation, screen): - returnPixels = [] + returnPixels = [] #TODO: consider preallocation and trimming [x,y] = eventLocation for (x,pixel) in screen.pixelsInRange(x-self['CutoffDist'], \ x+self['CutoffDist']): pixelDist = Util.dist(pixel.location, eventLocation) if pixelDist < self['CutoffDist']: w = Util.gaussian(pixelDist, self['Height'], 0, self['Width']) - if w>1: - #pdb.set_trace() - pass returnPixels.append((pixel, w)) return returnPixels -- cgit v1.2.3