From 2093fcbad2023d40328750a6ee1afd9094d94537 Mon Sep 17 00:00:00 2001 From: Erik van Blokland Date: Fri, 30 May 2008 08:18:23 +0000 Subject: [PATCH] Removed print statements. git-svn-id: http://svn.robofab.com/trunk@87 b5fa9d6c-a76f-4ffd-b3cb-f825fc41095c --- Lib/robofab/pens/marginPen.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Lib/robofab/pens/marginPen.py b/Lib/robofab/pens/marginPen.py index ddee60e50..ee88575dd 100644 --- a/Lib/robofab/pens/marginPen.py +++ b/Lib/robofab/pens/marginPen.py @@ -36,7 +36,6 @@ class MarginPen(BasePen): if pt == self.currentPt: return hits = splitLine(self.currentPt, pt, self.height, True) - #print "hits lineto", hits if len(hits)>1: # result will be 2 tuples of 2 coordinates # first two points: start to intersect @@ -56,7 +55,6 @@ class MarginPen(BasePen): def _curveToOne(self, pt1, pt2, pt3): hits = splitCubic(self.currentPt, pt1, pt2, pt3, self.height, True) - #print "hits curveto", hits if len(hits)==2: if not self.contourIndex in self.hits: self.hits[self.contourIndex] = [] @@ -87,7 +85,6 @@ class MarginPen(BasePen): def getContourMargins(self): """Get the horizontal margins for each contour.""" - print 'self.hits', self.hits allHits = {} for index, pts in self.hits.items(): unique = list(Set(pts))