Computes the dot product AB*BC

Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic
Public Shared Function Dot ( _
	ByRef a As PointD, _
	ByRef b As PointD, _
	ByRef c As PointD _
) As Double
C#
public static double Dot(
	ref PointD a,
	ref PointD b,
	ref PointD c
)
Visual C++
public:
static double Dot(
	PointD% a, 
	PointD% b, 
	PointD% c
)
JavaScript
EGIS.ShapeFileLib.GeometryAlgorithms.dot = function(a, b, c);

Return Value

See Also