( self, lineSegs )
| 286 | self.plotPoint( pt[0], pt[1] ) |
| 287 | |
| 288 | def _drawLines( self, lineSegs ): |
| 289 | for x1,y1,x2,y2 in lineSegs: |
| 290 | self._drawLine( x1, y1, x2, y2 ) |
| 291 | |
| 292 | def drawLine( self, x1, y1, x2, y2, type=LINE_SOLID ): |
| 293 | if type == BitMap.LINE_SOLID: |