Click or drag to resize

SurfaceRebuildOneDirection Method

Rebuilds an existing surface with a new surface to a given point count in either the u or v directions independently.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 6.7
Syntax
public NurbsSurface RebuildOneDirection(
	int direction,
	int pointCount,
	LoftType loftType,
	double refitTolerance
)

Parameters

direction
Type: SystemInt32
The direction (0 = U, 1 = V).
pointCount
Type: SystemInt32
The number of points in the output surface in the "direction" direction.
loftType
Type: Rhino.GeometryLoftType
The loft type
refitTolerance
Type: SystemDouble
The refit tolerance. When in doubt, use the document's model absolute tolerance.

Return Value

Type: NurbsSurface
new rebuilt surface on success. null on failure.
See Also