Computes the pseudo-perpendicular (ie., the shortest connecting edge).

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

Syntax

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

Parameters

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

Return Value

Returns the shortest edge connecting the edge and edge

Returns a zero-length edge if the edge intersects edge

Remarks

The start point of the pseudoperpendicular lies on the edge, the end point lies on edge. The pseudoperpendicular may not be perpendicular on any of the edge or edge!

See Also