Api - IPathCircle Interface
Hierarchy
Implemented by
Index
Properties
Optional layer
Optional layer of this path.
origin
The main point of reference for this path.
radius
The radius of the circle.
type
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