Interface Polygon

interface Polygon {
    drag: boolean;
    dragConstraint: DragConstraint;
    ensureOnCanvas: boolean;
    fillColor: Color;
    interactiveOnly: boolean;
    name: string;
    points: Vec2[];
    scale: Num;
    shapeType: Polygon;
    strokeColor: Color;
    strokeDasharray: string;
    strokeStyle: string;
    strokeWidth: Num;
}

Hierarchy (view full)

Properties

drag: boolean
dragConstraint: DragConstraint
ensureOnCanvas: boolean
fillColor: Color
interactiveOnly: boolean
name: string
points: Vec2[]
scale: Num
shapeType: Polygon
strokeColor: Color
strokeDasharray: string
strokeStyle: string
strokeWidth: Num