Changeset 87

Show
Ignore:
Timestamp:
05/30/08 03:18:23 (2 years ago)
Author:
erik
Message:

Removed print statements.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Lib/robofab/pens/marginPen.py

    r86 r87  
    3737                                return 
    3838                hits = splitLine(self.currentPt, pt, self.height, True) 
    39                 #print "hits lineto", hits 
    4039                if len(hits)>1: 
    4140                        # result will be 2 tuples of 2 coordinates 
     
    5756        def _curveToOne(self, pt1, pt2, pt3): 
    5857                hits = splitCubic(self.currentPt, pt1, pt2, pt3, self.height, True) 
    59                 #print "hits curveto", hits 
    6058                if len(hits)==2: 
    6159                        if not self.contourIndex in self.hits: 
     
    8886        def getContourMargins(self): 
    8987                """Get the horizontal margins for each contour.""" 
    90                 print 'self.hits', self.hits 
    9188                allHits = {} 
    9289                for index, pts in self.hits.items():