Click or drag to resize
Accord.NET (logo)

Matrix4x4Multiply Operator (Matrix4x4, Vector4)

Multiplies specified matrix by the specified vector.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static Vector4 operator *(
	Matrix4x4 matrix,
	Vector4 vector
)
Request Example View Source

Parameters

matrix
Type: Accord.MathMatrix4x4
Matrix to multiply by vector.
vector
Type: Accord.MathVector4
Vector to multiply matrix by.

Return Value

Type: Vector4
Returns new vector which is the result of multiplication of the specified matrix by the specified vector.
See Also