Document Solutions Image Viewer
    Preparing search index...

    Interface Bounds

    Reach data structure with main (x, y, width, height) and additional (rotation angle, direction) information about the shape

    interface Bounds {
        rotationAngle?: number;
        dirX?: number;
        dirY?: number;
        x: number;
        y: number;
        width: number;
        height: number;
    }

    Hierarchy (View Summary)

    Properties

    rotationAngle?: number

    Rotation angle

    dirX?: number

    X-axis direction

    dirY?: number

    Y-axis direction

    x: number

    X position.

    y: number

    Y position.

    width: number

    Width.

    height: number

    Height.