Computes the fillet arc for a curve filleting operation.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public static Arc CreateFillet(
Curve curve0,
Curve curve1,
double radius,
double t0Base,
double t1Base
)
Public Shared Function CreateFillet (
curve0 As Curve,
curve1 As Curve,
radius As Double,
t0Base As Double,
t1Base As Double
) As Arc
Parameters
- curve0
- Type: Rhino.GeometryCurve
First curve to fillet. - curve1
- Type: Rhino.GeometryCurve
Second curve to fillet. - radius
- Type: SystemDouble
Fillet radius. - t0Base
- Type: SystemDouble
Parameter on curve0 where the fillet ought to start (approximately). - t1Base
- Type: SystemDouble
Parameter on curve1 where the fillet ought to end (approximately).
Return Value
Type:
ArcThe fillet arc on success, or Arc.Unset on failure.
See Also