mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 00:09:17 +02:00
* RectWidth was not public
This commit is contained in:
parent
31b978f3b7
commit
9a344568df
@ -493,6 +493,8 @@ function RectCenter(var R: TRect; const Bounds: TRect): TRect;
|
|||||||
function RectCenter(var R: TRectF; const Bounds: TRectF): TRectF;
|
function RectCenter(var R: TRectF; const Bounds: TRectF): TRectF;
|
||||||
function RectHeight(const Rect: TRect): Integer; inline;
|
function RectHeight(const Rect: TRect): Integer; inline;
|
||||||
function RectHeight(const Rect: TRectF): Single; inline;
|
function RectHeight(const Rect: TRectF): Single; inline;
|
||||||
|
function RectWidth(const Rect: TRect): Integer; inline;
|
||||||
|
function RectWidth(const Rect: TRectF): Single; inline;
|
||||||
function UnionRect(var Rect : TRect; const R1,R2 : TRect) : Boolean;
|
function UnionRect(var Rect : TRect; const R1,R2 : TRect) : Boolean;
|
||||||
function UnionRect(var Rect : TRectF; const R1,R2 : TRectF) : Boolean;
|
function UnionRect(var Rect : TRectF; const R1,R2 : TRectF) : Boolean;
|
||||||
function UnionRect(const R1,R2 : TRect) : TRect;
|
function UnionRect(const R1,R2 : TRect) : TRect;
|
||||||
@ -810,6 +812,8 @@ begin
|
|||||||
Result:=Rect.Height
|
Result:=Rect.Height
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function RectCenter(var R: TRect; const Bounds: TRect): TRect;
|
function RectCenter(var R: TRect; const Bounds: TRect): TRect;
|
||||||
|
|
||||||
var
|
var
|
||||||
|
Loading…
Reference in New Issue
Block a user