Computes a perpendicular dropped from the point on an object.

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

Syntax

C#
public Edge PerpendicularOn(
	Plane plane
)
Visual Basic (Declaration)
Public Function PerpendicularOn ( _
	plane As Plane _
) As Edge
Visual C++
public:
Edge^ PerpendicularOn(
	Plane^ plane
)

Parameters

plane
Type: ceometric.VectorGeometry..::.Plane
A plane the perpendicular is dropped onto.

Return Value

Returns an edge starting at the point and ending at the base point of the perpendicular dropped from the point onto plane.

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

See Also