Click or drag to resize

Matrix3F(Single, Single, Single, Single, Single, Single, Single, Single, Single) Constructor

Constructs a matrix with the given individual elements.

Namespace: NeoAxis
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public Matrix3F(
	float xx,
	float xy,
	float xz,
	float yx,
	float yy,
	float yz,
	float zx,
	float zy,
	float zz
)

Parameters

xx  Single
Value at row 1 column 1 of the matrix.
xy  Single
Value at row 1 column 2 of the matrix.
xz  Single
Value at row 1 column 3 of the matrix.
yx  Single
Value at row 2 column 1 of the matrix.
yy  Single
Value at row 2 column 2 of the matrix.
yz  Single
Value at row 2 column 3 of the matrix.
zx  Single
Value at row 3 column 1 of the matrix.
zy  Single
Value at row 3 column 2 of the matrix.
zz  Single
Value at row 3 column 3 of the matrix.
See Also