Vector2.opposite()
Set each axis of this vector to its opposite value
Parameters
Name | Type | Description | |
---|---|---|---|
1 | axis | x | y | undefined | The axis you want to set or undefined if you want to change both axis |
Return value
Vector2
The vector with its new values
Usage
import {Vector2} from '@lcluber/type6js';
let vector = new Vector2(1,1);
console.log(vector); //(1,1)
vector.opposite('x');
console.log(vector); //(-1,1)
vector.opposite();
console.log(vector); //(-1,-1)