CurveTrimInterval Method (Double, Double) |
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(
double t0,
double t1
)
Public Function TrimInterval (
t0 As Double,
t1 As Double
) As Boolean
Parameters
- t0
- Type: SystemDouble
Start of the trimming interval. - t1
- Type: SystemDouble
End of the 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