Click or drag to resize
Accord.NET (logo)

Vector4Division Operator (Vector4, Vector4)

Divides corresponding coordinates of two vectors.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static Vector4 operator /(
	Vector4 vector1,
	Vector4 vector2
)
Request Example View Source

Parameters

vector1
Type: Accord.MathVector4
The first vector to divide.
vector2
Type: Accord.MathVector4
The second vector to devide.

Return Value

Type: Vector4
Returns a vector which coordinates are equal to coordinates of the first vector divided by corresponding coordinates of the second vector.
See Also