Returns the dot product of vector v1 and vector v2

Namespace:  Hyleos.Common.Geometry
Assembly:  Hyleos.Common (in Hyleos.Common.dll) Version: 1.0.3.2 (1.0.3.2)

Syntax

C#
public static double DotProduct(
	Vector3D v1,
	Vector3D v2
)
Visual Basic (Declaration)
Public Shared Function DotProduct ( _
	v1 As Vector3D, _
	v2 As Vector3D _
) As Double
Visual C++
public:
static double DotProduct(
	Vector3D v1, 
	Vector3D v2
)

Return Value

Dot product

See Also