Divides corresponding coordinates of two vectors.

Namespace:  AForge.Math
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public static Vector4 operator /(
	Vector4 vector1,
	Vector4 vector2
)

Parameters

vector1
Type: AForge.Math..::.Vector4
The first vector to divide.
vector2
Type: AForge.Math..::.Vector4
The second vector to devide.

Return Value

Returns a vector which coordinates are equal to coordinates of the first vector divided by corresponding coordinates of the second vector.

See Also