pixi.js
    Preparing search index...

    Type Alias RectangleLikeAdvanced

    A rectangle-like object that contains x, y, width, and height properties.

    const rect = { x: 0, y: 0, width: 100, height: 100 };
    
    type RectangleLike = {
        height: number;
        width: number;
        x: number;
        y: number;
    }
    Index

    Properties

    Properties

    height: number
    width: number
    x: number
    y: number