Matrix4x4.operator *
static function operator *(lhs: Matrix4x4, rhs: Matrix4x4): Matrix4x4;
Description

Multiplies two matrices.

The returned result is lhs * rhs.
static function operator *(lhs: Matrix4x4, v: Vector4): Vector4;
Description

Transforms a Vector4 by a matrix.