Click or drag to resize

Matrix2Multiply(Matrix2, Vector2) Operator

Multiplies a matrix by a given Vector2 structure.

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

Parameters

m  Matrix2
The matrix to multiply.
v  Vector2
The vector by which to multiply.

Return Value

Vector2
The result of the multiplication.
See Also