Matrix4x4.scale()
Scale this matrix by the Vector3 given as parameter
Parameters
Name | Type | Description | |
---|---|---|---|
1 | vector3 | Vector3 |
Return value
Matrix4x4
the Matrix4x4 with its new values
Usage
import {Matrix4x4, Vector3} from '@lcluber/type6js';
let vector = new Vector3(2,2,2);
let matrix = new Matrix4x4().identity();
matrix.scale(vector);