Constructs an edge from two points.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public Edge(
	Point startPoint,
	Point endPoint
)
Visual Basic (Declaration)
Public Sub New ( _
	startPoint As Point, _
	endPoint As Point _
)
Visual C++
public:
Edge(
	Point^ startPoint, 
	Point^ endPoint
)

Parameters

startPoint
Type: ceometric.VectorGeometry..::.Point
The start point of the edge.
endPoint
Type: ceometric.VectorGeometry..::.Point
The end point of the edge.

Remarks

Identical start and end points are feasible.

See Also