Click or drag to resize

BezierSurfaceSplit Method

Divides the Bezier surface at the specified parameter.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 7.1
Syntax
public bool Split(
	int direction,
	double t,
	out BezierSurface left,
	out BezierSurface right
)

Parameters

direction
Type: SystemInt32
0 is split along u and 1 is split along v
t
Type: SystemDouble
parameter must satisfy 0 < t < 1
left
Type: Rhino.GeometryBezierSurface

[Missing <param name="left"/> documentation for "M:Rhino.Geometry.BezierSurface.Split(System.Int32,System.Double,Rhino.Geometry.BezierSurface@,Rhino.Geometry.BezierSurface@)"]

right
Type: Rhino.GeometryBezierSurface

[Missing <param name="right"/> documentation for "M:Rhino.Geometry.BezierSurface.Split(System.Int32,System.Double,Rhino.Geometry.BezierSurface@,Rhino.Geometry.BezierSurface@)"]

Return Value

Type: Boolean
true on success
See Also