Computes the overlapping edge of two collinear edges.

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

Syntax

C#
public Edge CollinearOverlap(
	Edge edge
)
Visual Basic (Declaration)
Public Function CollinearOverlap ( _
	edge As Edge _
) As Edge
Visual C++
public:
Edge^ CollinearOverlap(
	Edge^ edge
)

Parameters

edge
Type: ceometric.VectorGeometry..::.Edge
An edge.

Return Value

Returns the overlap of the edge and edge.

Returns null if the edge and edge do not overlap.

Remarks

This test requires the edge and edge to be collinear but does not recheck this for performance and robustness reasons. Use this test only if it is crystal clear that the edge is collinear to edge.

See Also