hosanna-ui-docs - v0.9.0
    Preparing search index...

    Represents a rectangle with x and y coordinates, width, and height.

    interface I2DRectangle {
        height: number;
        width: number;
        x: number;
        y: number;
    }
    Index

    Properties

    Properties

    height: number

    The height of the bounding rectangle.

    width: number

    The width of the bounding rectangle.

    x: number

    The x-coordinate of the top-left corner of the bounding rectangle.

    y: number

    The y-coordinate of the top-left corner of the bounding rectangle.