Creates a new Bézier path object to store subsequent path commands.
(self)
| 1146 | # P A T H |
| 1147 | |
| 1148 | def newPath(self): |
| 1149 | """Creates a new Bézier path object to store subsequent path |
| 1150 | commands.""" |
| 1151 | self._bezierpath = FlatBezierPath(self.b) |
| 1152 | return self._bezierpath |
| 1153 | |
| 1154 | def drawGlyphPath(self, glyph): |
| 1155 | """Converts the cubic commands to a drawable path.""" |
no test coverage detected