Computes the intersection point of the projection of two lines 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(
	Line l
)
Visual Basic (Declaration)
Public Function IntersectXY ( _
	l As Line _
) As Point
Visual C++
public:
Point^ IntersectXY(
	Line^ l
)

Parameters

l
Type: ceometric.VectorGeometry..::.Line
A line.

Return Value

Returns the intersection point of the projection of two lines onto the xy-plane. Returns null if the lines do not intersect in the xy-plane (are parallel).

Remarks

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

See Also