The interface representing a vector in 3-dimensional space.

interface AcGeVector3dLike {
    x: number;
    y: number;
    z: number;
}

Properties

x y z

Properties

x: number

X coordinate of the 3d vector

y: number

Y coordinate of the 3d vector

z: number

Z coordinate of the 3d vector