Rect
The Rect
class represents a rectangle in 2D space. It contains four integer values that specify the top, left, right, and bottom edges of the rectangle.
Definition
Module: dynamsoft_core
class Rect(object)
Properties
Property | Type | Description |
---|---|---|
top |
int | The top edge of the rectangle. |
left |
int | The left edge of the rectangle. |
right |
int | The right edge of the rectangle. |
bottom |
int | The bottom edge of the rectangle. |