System.Math.Vectors.Point3D
Delphi
function Point3D(const X, Y, Z: Single): TPoint3D; overload;
function Point3D(const AVector3D: TVector3D; const ATransform: Boolean): TPoint3D; overload;
C++
extern DELPHI_PACKAGE TPoint3D __fastcall Point3D(const float X, const float Y, const float Z)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.Math.Vectors.pas System.Math.Vectors.hpp |
System.Math.Vectors | System.Math.Vectors |
Description
Generates a 3D point based on the given 3D space coordinates.
There are two Point3D overloaded functions. The first one accepts the 3D space coordinates as Single floating-point values, while the second Point3D overloaded function takes in the coordinates under the form of a tagVECTOR3D.