Click or drag to resize

Matrix2FMultiply(Matrix2F, Vector2F) Operator

Multiplies a matrix by a given Vector2F structure.

Namespace: NeoAxis
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public static Vector2F operator *(
	Matrix2F m,
	Vector2F v
)

Parameters

m  Matrix2F
The matrix to multiply.
v  Vector2F
The vector by which to multiply.

Return Value

Vector2F
The result of the multiplication.
See Also