Click or drag to resize

IntersectionPlaneCircle Method

Intersects a plane with a circle using exact calculations.

Namespace:  Rhino.Geometry.Intersect
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public static PlaneCircleIntersection PlaneCircle(
	Plane plane,
	Circle circle,
	out double firstCircleParameter,
	out double secondCircleParameter
)

Parameters

plane
Type: Rhino.GeometryPlane
Plane to intersect.
circle
Type: Rhino.GeometryCircle
Circe to intersect.
firstCircleParameter
Type: SystemDouble
First intersection parameter on circle if successful or RhinoMath.UnsetValue if not.
secondCircleParameter
Type: SystemDouble
Second intersection parameter on circle if successful or RhinoMath.UnsetValue if not.

Return Value

Type: PlaneCircleIntersection
The type of intersection that occurred.
See Also