Curve.Fillet (ICurve, ICurve, Double, Boolean, Boolean, Boolean, Boolean, out Arc) Method

Fillets two coplanar curves with an arc of given radius.
Public Shared Function Fillet( _ 
ByVal C1 As ICurve, _ 
ByVal C2 As ICurve, _ 
ByVal radius As Double, _ 
ByVal flip1 As Boolean, _ 
ByVal flip2 As Boolean, _ 
ByVal trim1 As Boolean, _ 
ByVal trim2 As Boolean, _ 
ByRef fillet As Arc
) As Boolean
This language is not supported or no code example is available.
public static bool Fillet( 
ICurve C1
ICurve C2
double radius
bool flip1
bool flip2
bool trim1
bool trim2
out Arc fillet 
)
This language is not supported or no code example is available.

Parameters

C1
ICurve

First curve

C2
ICurve

Second curve

radius
double

Radius of the fillet arc

flip1
bool

Flips first curve direction

flip2
bool

Flips second curve direction

trim1
bool

When true the first curve is trimmed

trim2
bool

When true the second curve is trimmed

fillet
Arc

The resulting fillet arc

Return Value

bool

True if the operation is successful, false if the curves don't lie on the same plane or don't touch.

.NET Framework

Supported in: 4.8

In this article

Definition