Eyeshot 10 WPF API Reference
Fillet Method (Curve)

WPF Assembly > devDept.Eyeshot.Entities Namespace > Curve Class : Fillet Method
First curve
Second curve
Radius of the fillet arc
Flips first curve direction
Flips second curve direction
When true the first curve is trimmed
When true the second curve is trimmed
The resulting fillet arc
Fillets two coplanar curves with an arc of given radius.
Syntax
'Declaration
 
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
public static bool Fillet( 
   ICurve C1,
   ICurve C2,
   double radius,
   bool flip1,
   bool flip2,
   bool trim1,
   bool trim2,
   out Arc fillet
)

Parameters

C1
First curve
C2
Second curve
radius
Radius of the fillet arc
flip1
Flips first curve direction
flip2
Flips second curve direction
trim1
When true the first curve is trimmed
trim2
When true the second curve is trimmed
fillet
The resulting fillet arc

Return Value

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

Reference

Curve Class
Curve Members