Returns the dot product of this vector and vector v1

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

Syntax

C#
public double DotProduct(
	Vector2D v1
)
Visual Basic (Declaration)
Public Function DotProduct ( _
	v1 As Vector2D _
) As Double
Visual C++
public:
double DotProduct(
	Vector2D v1
)

Parameters

v1
Type: Hyleos.Common.Geometry..::.Vector2D
Vector 1

Return Value

Dot product

See Also