System.Math.Vectors.TPoint3D.Create

提供: RAD Studio API Documentation
移動先: 案内検索

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 */;

プロパティ

種類 可視性 ソース ユニット
function public
System.Math.Vectors.pas
System.Math.Vectors.hpp
System.Math.Vectors TPoint3D

説明

TPoint3D オブジェクトを作成します。

Create を使用すると、新しい TPoint3D オブジェクトを構築および初期化することができます。 XY、および Z は、それぞれ点の 3D 座標を示しています。

XY、および Z の型は、Single です。

関連項目