Intersection.PlaneCircle Method

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
)
Public Shared Function PlaneCircle ( 
	plane As Plane,
	circle As Circle,
	<OutAttribute> ByRef firstCircleParameter As Double,
	<OutAttribute> ByRef secondCircleParameter As Double
) As PlaneCircleIntersection

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