Click or drag to resize

SurfaceCreateTweenSurfacesWithSampling Method

Create tween surfaces that gradually transition between two bounding surfaces using point sampling.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 8.14
Syntax
public static Surface[] CreateTweenSurfacesWithSampling(
	Surface surface0,
	Surface surface1,
	int numSurfaces,
	int numSamples,
	double tolerance
)

Parameters

surface0
Type: Rhino.GeometrySurface
The first, or starting, surface.
surface1
Type: Rhino.GeometrySurface
The second, or ending, curve.
numSurfaces
Type: SystemInt32
Number of tween surfaces to create.
numSamples
Type: SystemInt32
Number of sample points along input surfaces.
tolerance
Type: SystemDouble
The tolerance. When in doubt, use the document's model absolute tolerance.

Return Value

Type: Surface
>An array of tween surfaces if successful, an empty array on error.
See Also