Resource Base
Table of contents

Rect

Interface Rect.

export interface Rect {
    /**
     * The x coordinates of the Top-Left corner of the Rect.
     */
    x: number;
    /**
     * The y coordinates of the Top-Left corner of the Rect.
     */
    y: number;
    /**
     * The width of the Rect.
     */
    width: number;
    /**
     * The height of the Rect.
     */
    height: number;
}

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article:

latest version

    Change +