Click or drag to resize

Matrix4Construct Method

Constructs a matrix with the given rotation and translation components and returns the resulting Matrix4.

Namespace:  NeoAxis
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public static void Construct(
	ref Matrix3 rotation,
	ref Vector3 translation,
	out Matrix4 result
)

Parameters

rotation
Type: NeoAxisMatrix3
The rotation Matrix3.
translation
Type: NeoAxisVector3
The translation Vector3.
result
Type: NeoAxisMatrix4
When the method completes, contains the resulting Matrix4.
See Also