|
Vector3Divide Method (Vector3, Vector3)
|
Divides corresponding coordinates of two vectors.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static Vector3 Divide(
Vector3 vector1,
Vector3 vector2
)
Public Shared Function Divide (
vector1 As Vector3,
vector2 As Vector3
) As Vector3
Request Example
View SourceParameters
- vector1
- Type: Accord.MathVector3
The first vector to divide. - vector2
- Type: Accord.MathVector3
The second vector to devide.
Return Value
Type:
Vector3Returns a vector which coordinates are equal to coordinates of the first vector divided by
corresponding coordinates of the second vector.
See Also