(context, x0, y0, x1, y1)
| 95146 | } |
| 95147 | |
| 95148 | function curveHorizontal(context, x0, y0, x1, y1) { |
| 95149 | context.moveTo(x0, y0); |
| 95150 | context.bezierCurveTo(x0 = (x0 + x1) / 2, y0, x0, y1, x1, y1); |
| 95151 | } |
| 95152 | |
| 95153 | function curveVertical(context, x0, y0, x1, y1) { |
| 95154 | context.moveTo(x0, y0); |