interface AsukaPrintAreaPatch {
    canvasSize?: {
        height?: number;
        width?: number;
    };
    engine?: string;
    height?: number;
    id?: string;
    kind?: string;
    label?: string;
    left?: number;
    locked?: boolean;
    metadata?: Record<string, unknown>;
    mode?: string;
    objects?: unknown[];
    physicalSize?: AsukaPhysicalSize;
    shape?: string;
    space?: AsukaCoordinateSpace;
    targetMeshId?: string;
    targetMeshIds?: string[];
    textureSlot?: string;
    top?: number;
    unit?: AsukaCoordinateUnit;
    visible?: boolean;
    width?: number;
    x?: number;
    y?: number;
}

Hierarchy

Properties

canvasSize?: {
    height?: number;
    width?: number;
}
engine?: string
height?: number
id?: string
kind?: string
label?: string
left?: number
locked?: boolean
metadata?: Record<string, unknown>
mode?: string
objects?: unknown[]
physicalSize?: AsukaPhysicalSize

Real-world printable extent represented by this area.

shape?: string
targetMeshId?: string
targetMeshIds?: string[]
textureSlot?: string
top?: number
visible?: boolean
width?: number
x?: number
y?: number