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

Syntax

Visual Basic
Public Shared Function LineSegPointDist ( _
	ByRef a As PointD, _
	ByRef b As PointD, _
	ByRef c As PointD, _
	<OutAttribute> ByRef tVal As Double, _
	<OutAttribute> ByRef pointOnSegment As PointD _
) As Double
C#
public static double LineSegPointDist(
	ref PointD a,
	ref PointD b,
	ref PointD c,
	out double tVal,
	out PointD pointOnSegment
)
Visual C++
public:
static double LineSegPointDist(
	PointD% a, 
	PointD% b, 
	PointD% c, 
	[OutAttribute] double% tVal, 
	[OutAttribute] PointD% pointOnSegment
)
JavaScript
EGIS.ShapeFileLib.GeometryAlgorithms.lineSegPointDist = function(a, b, c, tVal, pointOnSegment);

Parameters

a
Type: EGIS.ShapeFileLib..::..PointD%
b
Type: EGIS.ShapeFileLib..::..PointD%
c
Type: EGIS.ShapeFileLib..::..PointD%
tVal
Type: System..::..Double%
pointOnSegment
Type: EGIS.ShapeFileLib..::..PointD%

See Also