System.Math.Vectors.tagVECTOR3D

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

Delphi

tagVECTOR3D = record

C++

struct DECLSPEC_DRECORD tagVECTOR3D
{
public:
    union
    {
        struct
        {
            float X;
            float Y;
            float Z;
            float W;
        };
        struct
        {
            TVector3DType V;
        };
    };
};

プロパティ

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

説明

3D 空間におけるベクトルのクラスです。


tagVECTOR3D は 3D 空間におけるベクトルを表します。