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