The interface representing a 2d vector.

interface AcGeVector2dLike {
    x: number;
    y: number;
}

Properties

x y

Properties

x: number

X coordinate of a 2d vector

y: number

Y coordinate of a 2d vector