Click or drag to resize

CurveCreateFillet Method

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
)

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.
See Also