Click or drag to resize

Matrix4 Constructor (Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double)

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 Matrix4(
	double xx,
	double xy,
	double xz,
	double xw,
	double yx,
	double yy,
	double yz,
	double yw,
	double zx,
	double zy,
	double zz,
	double zw,
	double wx,
	double wy,
	double wz,
	double ww
)

Parameters

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