class Vector2 { constructor (x, y) { this.x = x this.y = y } /** * Check for exact vector equality. * * @param vector The vector to compare to. * @returns Whether they are exactly eq
京公网安备 11010502049817号