Curve.CreateFillet Method

CurveCreateFillet Method

Computes the fillet arc for a curve filleting operation.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
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: Arc
The fillet arc on success, or Arc.Unset on failure.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.14
See Also