In This Topic
Calculates the dot product of two vectors.
Syntax
'Declaration
Public Shared Function Dot( _
ByVal As Vector2, _
ByVal As Vector2 _
) As System.Single
public static System.float Dot(
Vector2 ,
Vector2
)
Parameters
- left
- First source vector.
- right
- Second source vector.
Return Value
The dot product of the two vectors.
See Also