( self, x, y )
| 192 | return Color.fromLong( self.palette[self.currentPen] ) |
| 193 | |
| 194 | def plotPoint( self, x, y ): |
| 195 | if ( 0 <= x < self.wd and 0 <= y < self.ht ): |
| 196 | x = int(x) |
| 197 | y = int(y) |
| 198 | self.bitarray[y][x] = self.currentPen |
| 199 | |
| 200 | def drawRect( self, x, y, wid, ht, fill=False ): |
| 201 | x = int(x) |
no outgoing calls
no test coverage detected