interface ShapeJSON {
    arcLengthDivisions: number;
    autoClose: boolean;
    currentPoint: Vector2Tuple;
    curves: CurveJSON[];
    holes: PathJSON[];
    metadata: {
        generator: string;
        type: string;
        version: number;
    };
    type: string;
    uuid: string;
}

Hierarchy (view full)

Properties

arcLengthDivisions: number
autoClose: boolean
currentPoint: Vector2Tuple
curves: CurveJSON[]
holes: PathJSON[]
metadata: {
    generator: string;
    type: string;
    version: number;
}
type: string
uuid: string