Intersection.SurfaceSurface Method

IntersectionSurfaceSurface Method

Intersects two Surfaces.

Namespace:  Rhino.Geometry.Intersect
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public static bool SurfaceSurface(
	Surface surfaceA,
	Surface surfaceB,
	double tolerance,
	out Curve[] intersectionCurves,
	out Point3d[] intersectionPoints
)
Public Shared Function SurfaceSurface ( 
	surfaceA As Surface,
	surfaceB As Surface,
	tolerance As Double,
	<OutAttribute> ByRef intersectionCurves As Curve(),
	<OutAttribute> ByRef intersectionPoints As Point3d()
) As Boolean

Parameters

surfaceA
Type: Rhino.GeometrySurface
First Surface for intersection.
surfaceB
Type: Rhino.GeometrySurface
Second Surface for intersection.
tolerance
Type: SystemDouble
Intersection tolerance.
intersectionCurves
Type: Rhino.GeometryCurve
The intersection curves will be returned here.
intersectionPoints
Type: Rhino.GeometryPoint3d
The intersection points will be returned here.

Return Value

Type: Boolean
true on success, false on failure.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.8
See Also