This commit is contained in:
Francesco Gonzales 2024-01-01 23:40:09 -08:00 committed by GitHub
commit 1f34348f3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,9 +16,9 @@
/** An integer bounding box, axis aligned. */ /** An integer bounding box, axis aligned. */
export declare interface BoundingBox { export declare interface BoundingBox {
/** The X coordinate of the top-left corner, in pixels. */ /** The X coordinate of the bottom-left corner, in pixels. */
originX: number; originX: number;
/** The Y coordinate of the top-left corner, in pixels. */ /** The Y coordinate of the bottom-left corner, in pixels. */
originY: number; originY: number;
/** The width of the bounding box, in pixels. */ /** The width of the bounding box, in pixels. */
width: number; width: number;