|
Vector3Dot Method
|
Calculates dot product of two vectors.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static float Dot(
Vector3 vector1,
Vector3 vector2
)
Public Shared Function Dot (
vector1 As Vector3,
vector2 As Vector3
) As Single
Request Example
View SourceParameters
- vector1
- Type: Accord.MathVector3
First vector to use for dot product calculation. - vector2
- Type: Accord.MathVector3
Second vector to use for dot product calculation.
Return Value
Type:
SingleReturns dot product of the two specified vectors.
See Also