* A bézier path containing a set of path commands similar to a SVG path. * Paths can be drawn on a context using `draw`. * @exports opentype.Path * @class * @constructor
()
| 22958 | * @constructor |
| 22959 | */ |
| 22960 | function Path() { |
| 22961 | this.commands = []; |
| 22962 | this.fill = 'black'; |
| 22963 | this.stroke = null; |
| 22964 | this.strokeWidth = 1; |
| 22965 | } |
| 22966 | |
| 22967 | /** |
| 22968 | * @param {number} x |
no outgoing calls