Computes the intersection point of the projection of two edges onto the xy-plane.

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

Syntax

C#
public Point IntersectXY(
	Edge e
)
Visual Basic (Declaration)
Public Function IntersectXY ( _
	e As Edge _
) As Point
Visual C++
public:
Point^ IntersectXY(
	Edge^ e
)

Parameters

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

Return Value

Returns the intersection point of the projection of two edges onto the xy-plane. Returns null if the edges do not intersect in the xy-plane.

Remarks

The returned point always lies in the xy-plane (z=0).

See Also