Graphics.arcTo method
Graphics › arcTo
Unofficial
Draws an arc between two tangent lines.Signature:
arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): thisParameters:
| Parameter | Type | Description |
|---|---|---|
| x1 | number | First point X. |
| y1 | number | First point Y. |
| x2 | number | Second point X. |
| y2 | number | Second point Y. |
| radius | number | Arc radius. |
Returns: this — This graphics for chaining.