Click or drag to resize

Matrix4H Constructor

Constructs a matrix with the given individual elements.

Namespace:  NeoAxis
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public Matrix4H(
	float xx,
	float xy,
	float xz,
	float xw,
	float yx,
	float yy,
	float yz,
	float yw,
	float zx,
	float zy,
	float zz,
	float zw,
	float wx,
	float wy,
	float wz,
	float ww
)

Parameters

xx
Type: SystemSingle
Value at row 1 column 1 of the matrix.
xy
Type: SystemSingle
Value at row 1 column 2 of the matrix.
xz
Type: SystemSingle
Value at row 1 column 3 of the matrix.
xw
Type: SystemSingle
Value at row 1 column 4 of the matrix.
yx
Type: SystemSingle
Value at row 2 column 1 of the matrix.
yy
Type: SystemSingle
Value at row 2 column 2 of the matrix.
yz
Type: SystemSingle
Value at row 2 column 3 of the matrix.
yw
Type: SystemSingle
Value at row 2 column 4 of the matrix.
zx
Type: SystemSingle
Value at row 3 column 1 of the matrix.
zy
Type: SystemSingle
Value at row 3 column 2 of the matrix.
zz
Type: SystemSingle
Value at row 3 column 3 of the matrix.
zw
Type: SystemSingle
Value at row 3 column 4 of the matrix.
wx
Type: SystemSingle
Value at row 4 column 1 of the matrix.
wy
Type: SystemSingle
Value at row 4 column 2 of the matrix.
wz
Type: SystemSingle
Value at row 4 column 3 of the matrix.
ww
Type: SystemSingle
Value at row 4 column 4 of the matrix.
See Also