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 Vector3 operator /(
	Vector3 vector1,
	Vector3 vector2
)

Parameters

vector1
Type: AForge.Math..::.Vector3
The first vector to divide.
vector2
Type: AForge.Math..::.Vector3
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