System.Math.Vectors.tagVECTOR
Delphi
tagVECTOR = record
C++
struct DECLSPEC_DRECORD tagVECTOR
{
public:
    union
    {
        struct
        {
            float X;
            float Y;
            float W;
        };
        struct
        {
            TVectorArray V;
        };
    };
};
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| record struct | public | System.Math.Vectors.pas System.Math.Vectors.hpp | System.Math.Vectors | System.Math.Vectors | 
Description
Describes a vector in a two-dimensional space.