Interface Ellipse

interface Ellipse {
    center: Vec2;
    drag: boolean;
    dragConstraint: DragConstraint;
    ensureOnCanvas: boolean;
    fillColor: Color;
    interactiveOnly: boolean;
    name: string;
    rx: Num;
    ry: Num;
    shapeType: Ellipse;
    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
rx: Num
ry: Num
shapeType: Ellipse
strokeColor: Color
strokeDasharray: string
strokeStyle: string
strokeWidth: Num