Click or drag to resize

Matrix3Multiply(Matrix3, Vector3, Vector3) Method

Multiplies a matrix by a given Vector3 structure.

Namespace: NeoAxis
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public static void Multiply(
	ref Matrix3 m,
	ref Vector3 v,
	out Vector3 result
)

Parameters

m  Matrix3
The matrix to multiply.
v  Vector3
The vector by which to multiply.
result  Vector3
When the method completes, contains the result of the multiplication.
See Also