Matrix4x4
.operator *
public static
Matrix4x4
operator *
(
Matrix4x4
lhs
,
Matrix4x4
rhs
);
Description 描述
Multiplies two matrices.
The returned result is
lhs
*
rhs
.
public static
Vector4
operator *
(
Matrix4x4
lhs
,
Vector4
vector
);
Description 描述
Transforms a
Vector4
by a matrix.