Click or drag to resize

CurvePullToBrepFace Method (Curve, BrepFace, Double, Boolean)

Pull a curve to a BrepFace using closest point projection.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 8.17
Syntax
public static Curve[] PullToBrepFace(
	Curve curve,
	BrepFace face,
	double tolerance,
	bool loose
)

Parameters

curve
Type: Rhino.GeometryCurve
Curve to pull.
face
Type: Rhino.GeometryBrepFace
Brep face that pulls.
tolerance
Type: SystemDouble
Tolerance to use for pulling.
loose
Type: SystemBoolean
If true, the curve's edit points are pulled back to the Brep face's underlying surface. If any edit point misses the surface, the curve will not be created.

Return Value

Type: Curve
An array of pulled curves, or an empty array on failure.
See Also