Contructor for a 4x4 matrix from four 4d-vectors, the vectors are treated as rows or columns depending on the boolean parameter

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

Syntax

C#
public Matrix4x4(
	Vector4D v1,
	Vector4D v2,
	Vector4D v3,
	Vector4D v4,
	bool columns
)

Parameters

v1
Type: VVVV.Utils.VMath..::..Vector4D

[Missing <param name="v1"/> documentation for "M:VVVV.Utils.VMath.Matrix4x4.#ctor(VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,System.Boolean)"]

v2
Type: VVVV.Utils.VMath..::..Vector4D

[Missing <param name="v2"/> documentation for "M:VVVV.Utils.VMath.Matrix4x4.#ctor(VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,System.Boolean)"]

v3
Type: VVVV.Utils.VMath..::..Vector4D

[Missing <param name="v3"/> documentation for "M:VVVV.Utils.VMath.Matrix4x4.#ctor(VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,System.Boolean)"]

v4
Type: VVVV.Utils.VMath..::..Vector4D

[Missing <param name="v4"/> documentation for "M:VVVV.Utils.VMath.Matrix4x4.#ctor(VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,VVVV.Utils.VMath.Vector4D,System.Boolean)"]

columns
Type: System..::..Boolean
if true, the vectors are treated as columns, else as rows

See Also