Surface.InterpolatedCurveOnSurfaceUV Method (IEnumerable(Point2d), Double)

SurfaceInterpolatedCurveOnSurfaceUV Method (IEnumerablePoint2d, Double)

Returns a curve that interpolates points on a surface. The interpolant lies on the surface.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public NurbsCurve InterpolatedCurveOnSurfaceUV(
	IEnumerable<Point2d> points,
	double tolerance
)
Public Function InterpolatedCurveOnSurfaceUV ( 
	points As IEnumerable(Of Point2d),
	tolerance As Double
) As NurbsCurve

Parameters

points
Type: System.Collections.GenericIEnumerablePoint2d
List of at least two UV parameter locations on the surface.
tolerance
Type: SystemDouble
Tolerance used for the fit of the push-up curve. Generally, the resulting interpolating curve will be within tolerance of the surface.

Return Value

Type: NurbsCurve
A new NURBS curve if successful, or null on error.
See Also