Interface Circle

interface Circle {
    center: Vec2;
    drag: boolean;
    dragConstraint: DragConstraint;
    ensureOnCanvas: boolean;
    fillColor: Color;
    interactiveOnly: boolean;
    name: string;
    r: Num;
    shapeType: Circle;
    strokeColor: Color;
    strokeDasharray: string;
    strokeStyle: string;
    strokeWidth: Num;
}

Hierarchy (view full)

Properties

center: Vec2
drag: boolean
dragConstraint: DragConstraint
ensureOnCanvas: boolean
fillColor: Color
interactiveOnly: boolean
name: string
r: Num
shapeType: Circle
strokeColor: Color
strokeDasharray: string
strokeStyle: string
strokeWidth: Num