VECTOR

32-bit 3D vector

typedef struct {
        long vx, vy;
        long vz, pad;
} VECTOR;

Members

vx, vy, vz Vector elements
pad System reserved

Explanation

VECTOR is used to define the structure of a 32-bit 3D vector.