Negate a vector.
The target vector.
Error - When a computed component is NaN or non-finite.
negate({ x: 1, y: -2 }); // -> { x: -1, y: 2 } Copy
negate({ x: 1, y: -2 }); // -> { x: -1, y: 2 }
Destination object to store the result.
const result = { x: 0, y: 0 };negate({ x: 1, y: -2 }, result); // result -> { x: -1, y: 2 } Copy
const result = { x: 0, y: 0 };negate({ x: 1, y: -2 }, result); // result -> { x: -1, y: 2 }
Negate a vector.