RhinoCommon API
BezierSurfaceSplit Method |
Divides the Bezier surface at the specified parameter.
Namespace: Rhino.Geometry
Assembly: RhinoCommon (in RhinoCommon.dll)
public bool Split( int direction, double t, out BezierSurface left, out BezierSurface right )
Public Function Split ( direction As Integer, t As Double, <OutAttribute> ByRef left As BezierSurface, <OutAttribute> ByRef right As BezierSurface ) As Boolean
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: Booleantrue on success