Return the intersection of 2 rectangles.
Source position: types.pp line 528
function IntersectRect( |
const Rect1: TRect; |
const Rect2: TRect |
):Boolean; |
const Rect1: TRectF; |
const Rect2: TRectF |
):Boolean; |
var Rect: TRect; |
const R1: TRect; |
const R2: TRect |
):Boolean; |
var Rect: TRectF; |
const R1: TRectF; |
const R2: TRectF |
):Boolean; |
IntersectRect returns the intersection of the 2 rectangles R1 and R2 in Rect. It returns True if the 2 rectangles have an intersection, otherwise False is returned, and Rect is filled with zero.
|
Check whether a point is inside a rectangle. |
|
|
Return the union of 2 rectangles. |
|
|
Check whether a rectangle is empty. |
|
|
Offset the rectangle. |
|
|
Increase the rectangle in size, keeping it centered. |
|
|
Return the size of the rectangle. |