--- layout: posts title: Api - IPathCircle Interface ---
A circle path.
Examples:
var circle: IPathCircle = { type: 'circle', origin: [0, 0], radius: 7 }; //typescript var circle = { type: 'circle', origin: [0, 0], radius: 7 }; //javascript
Optional layer of this path.
The main point of reference for this path.
The radius of the circle.
The type of the path, e.g. "line", "circle", or "arc". These strings are enumerated in pathType.
Generated using TypeDoc
A circle path.
Examples:
var circle: IPathCircle = { type: 'circle', origin: [0, 0], radius: 7 }; //typescript var circle = { type: 'circle', origin: [0, 0], radius: 7 }; //javascript