Returns a dot product of two vectors.
Namespace: SampSharp.GameModeAssembly: SampSharp.GameMode (in SampSharp.GameMode.dll) Version: 0.7.6221.37952
Syntaxpublic static float Dot(
Vector4 value1,
Vector4 value2
)
Public Shared Function Dot (
value1 As Vector4,
value2 As Vector4
) As Single
Parameters
- value1
- Type: SampSharp.GameModeVector4
The first vector. - value2
- Type: SampSharp.GameModeVector4
The second vector.
Return Value
Type:
SingleThe dot product of two vectors.
See Also