Computes the spatial intersection of two objects.

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

Syntax

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

Parameters

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

Return Value

Returns
  • the intersection point of the ellipse and edge if the ellipse intersects edge
  • null if the ellipse does not intersect edge. In particular, it returns
  • null if the ellipse is coplanar or parallel to edge.

Remarks

Use Intersect2d(Edge) for coplanar intersection.

See Also