sempdf v1.9.1Interfaces
Interface: CurveToCommand
sempdf / CurveToCommand
Defined in: src/types.ts:3628
Vector path command for drawing a cubic Bezier curve.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
type | "curveTo" | Discriminator identifying this option or command shape. | src/types.ts:3630 |
x1 | number | First Bezier control point x-coordinate. | src/types.ts:3632 |
x2 | number | Second Bezier control point x-coordinate. | src/types.ts:3636 |
x3 | number | Ending point x-coordinate. | src/types.ts:3640 |
y1 | number | First Bezier control point y-coordinate. | src/types.ts:3634 |
y2 | number | Second Bezier control point y-coordinate. | src/types.ts:3638 |
y3 | number | Ending point y-coordinate. | src/types.ts:3642 |