@samatawy/diagrams
    Preparing search index...

    Interface IRect

    A rectangle defined by its left and top coordinates, as well as its width and height. This is commonly used for bounding boxes and layout calculations.

    interface IRect {
        left: number;
        top: number;
        width: number;
        height: number;
    }
    Index

    Properties

    Properties

    left: number
    top: number
    width: number
    height: number