System.Math.Vectors.tagVECTOR3D
Delphi
tagVECTOR3D = record
case Integer of
0: (V: TVector3DType;);
1: (X: Single;
Y: Single;
Z: Single;
W: Single;);
end;
C++
struct DECLSPEC_DRECORD tagVECTOR3D
{
public:
union
{
struct
{
float X;
float Y;
float Z;
float W;
};
struct
{
TVector3DType V;
};
};
};
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
record struct |
public | System.Math.Vectors.pas System.Math.Vectors.hpp |
System.Math.Vectors | System.Math.Vectors |
Description
Classe pour les vecteurs dans l'espace 3D. tagVECTOR3D décrit un vecteur dans l'espace 3D.