Obtains the dot product of two vectors.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static double DotProduct(
Vector2 u,
Vector2 v
)
Public Shared Function DotProduct (
u As Vector2,
v As Vector2
) As Double
public:
static double DotProduct(
Vector2 u,
Vector2 v
)
static member DotProduct :
u : Vector2 *
v : Vector2 -> float
STATIC METHOD DotProduct(
u AS Vector2,
v AS Vector2
) AS REAL8
Parameters
- u
- Type: DXFReaderNETVector2
First vector. - v
- Type: DXFReaderNETVector2
Second vector.
Return Value
Type:
DoubleThe dot product.
See Also