CurveTrimInterval Method (Interval) |
Trims the curve in-place by removing portions of the curve outside the specified interval.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 8.25
Syntaxpublic bool TrimInterval(
Interval domain
)
Public Function TrimInterval (
domain As Interval
) As Boolean
Parameters
- domain
- Type: Rhino.GeometryInterval
Trimming interval.
Return Value
Type:
BooleanTrue if successful, false otherwise.
Remarks
Portions of the curve before curve(domain[0]) and after curve(domain[1]) are removed.
See Also