System.Math.Vectors.TPoint3D.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function Create(const AX, AY, AZ: Single): TPoint3D; overload; static; inline;
class function Create(const P: TVector3DType): TPoint3D; overload; static; inline;
class function Create(const APoint: TPointF; const AZ: Single = 0.0): TPoint3D; overload; static; inline;

C++

static TPoint3D __fastcall Create(const float AX, const float AY, const float AZ)/* overload */;
static TPoint3D __fastcall Create(const TVector3DType &P)/* overload */;
static TPoint3D __fastcall Create(const System::Types::TPointF &APoint, const float AZ = 0.000000E+00f)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.Math.Vectors.pas
System.Math.Vectors.hpp
System.Math.Vectors TPoint3D

Description

Creates a TPoint3D object.

Use Create to construct and initialize a new TPoint3D object. X, Y, and Z specify the 3D coordinates of the point, respectively.

The type of X, Y, and Z is Single.

See Also