Vector3.min()
Compare this vector to the vector given as parameter and set the lowest value of each axis to this vector
Parameters
Name | Type | Description | |
---|---|---|---|
1 | v | Vector3 |
Return value
Vector3
The vector with its new values
Usage
import {Vector3} from '@lcluber/type6js';
let vector1 = new Vector3(1,2,3);
let vector2 = new Vector3(2,2,2);
console.log(vector1); //(1,2,3)
vector1.min(vector2);
console.log(vector1); //(1,2,2)