Computes the coplanar 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 PointSet Intersect2d(
	Edge edge
)
Visual Basic (Declaration)
Public Function Intersect2d ( _
	edge As Edge _
) As PointSet
Visual C++
public:
PointSet^ Intersect2d(
	Edge^ edge
)

Parameters

edge
Type: ceometric.VectorGeometry..::.Edge
An edge coplanar to the circle.

Return Value

Returns a PointSet containing the intersection points of the circumference of the circle and edge. This point set contains
  • 0 intersection points if the circle is coplanar to edge but does not intersect edge
  • 1 intersection point if the circle is coplanar to edge and edge is tangent to the circle
  • 1 intersection point if the circle is coplanar to edge and edge crosses the circle once
  • 2 intersection points if the circle is coplanar to edge and edge crosses the circle twice
Returns null if the circle is not coplanar to edge

Remarks

Use Intersect3d(Edge) for non-coplanar intersection.

See Also