Blends a matrix m1 by amount1 and a matrix m2 by amount2 into a new matrix m.

Namespace: VVVV.Utils.VMath
Assembly: VVVV.Utils3rdParty (in VVVV.Utils3rdParty.dll) Version: 1.0.4694.10872

Syntax

C#
public static bool Blend(
	Matrix4x4 m1,
	Matrix4x4 m2,
	double amount1,
	double amount2,
	out Matrix4x4 m
)

Parameters

m1
Type: VVVV.Utils.VMath..::..Matrix4x4
Matrix 1 to blend.
m2
Type: VVVV.Utils.VMath..::..Matrix4x4
Matrix 2 to blend.
amount1
Type: System..::..Double
Amount of matrix 1 to be used in new blended matrix.
amount2
Type: System..::..Double
Amount of matrix 2 to be used in new blended matrix.
m
Type: VVVV.Utils.VMath..::..Matrix4x4%
The new blenden matrix.

Return Value

True if matrix 1 and matrix 2 could be decomposed, otherwise false.

See Also