FMX.Types3D.TBoundingBox.Offset

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Offset(const DX, DY, DZ: Single): TBoundingBox; overload;
function Offset(const APoint: TPoint3D): TBoundingBox; overload;

C++

TBoundingBox __fastcall Offset(const float DX, const float DY, const float DZ)/* overload */;
TBoundingBox __fastcall Offset(const System::Math::Vectors::TPoint3D &APoint)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
FMX.Types3D.pas
FMX.Types3D.hpp
FMX.Types3D TBoundingBox

Description

Offsets the TBoundingBox according to the input argument.

You can provide a TPoint3D input with the argument APoint or three single input arguments DX, DY and DZ to offset the TBoundingBox.

See Also