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(
	Point point
)
Visual Basic (Declaration)
Public Function PseudoPerdendicularOn ( _
	point As Point _
) As Edge
Visual C++
public:
Edge^ PseudoPerdendicularOn(
	Point^ point
)

Parameters

point
Type: ceometric.VectorGeometry..::.Point
A point.

Return Value

Returns the shortest edge connecting the edge and point

Returns a zero-length edge if the point lies on the edge.

Remarks

The start point of the pseudoperpendicular is point, the end point lies on the edge. The pseudoperpendicular may not be perpendicular to the edge.

See Also