FMX.Types3D.TBoundingBox.Inflate
Delphi
function Inflate(const DX, DY, DZ: Single): TBoundingBox; overload;
function Inflate(const DL, DT, DN, DR, DB, DF: Single): TBoundingBox; overload;
C++
TBoundingBox __fastcall Inflate(const float DX, const float DY, const float DZ)/* overload */;
TBoundingBox __fastcall Inflate(const float DL, const float DT, const float DN, const float DR, const float DB, const float DF)/* overload */;
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| function | public | FMX.Types3D.pas FMX.Types3D.hpp |
FMX.Types3D | TBoundingBox |
Description
Inflates the TBoundingBox according to the input arguments.
Two overloaded methods are available for inflating a TBoundingBox. The first overloaded method inflates the BottomRightFar and TopLeftNear of the TBoundingBox with DX, DY, Dz and -DX, -DY, -DZ respectively. The second overloaded method, inflates the BottomRightFar and TopLeftNear of the TBoundingBox with DR, DB, DF and -DL, -DT, -DN respectively.