Inverts one or more axis of a point
invert({x:10, y:10}); // Yields: {x:-10, y:-10}invert({x:10, y:10}, `x`); // Yields: {x:-10, y:10} Copy
invert({x:10, y:10}); // Yields: {x:-10, y:-10}invert({x:10, y:10}, `x`); // Yields: {x:-10, y:10}
Point to invert
Which axis. If unspecified, both axies are inverted
Inverts one or more axis of a point