Calc.Biarc (Point2d, Vector2d, Point2d, Vector2d, out Arc2d, out Arc2d) Method

Calculates a biarc from pt1 to pt2.
Public Shared Function Biarc( _ 
ByVal pt1 As Point2d, _ 
ByVal t1 As Vector2d, _ 
ByVal pt2 As Point2d, _ 
ByVal t2 As Vector2d, _ 
ByRef a1 As Arc2d, _ 
ByRef a2 As Arc2d
) As Boolean
This language is not supported or no code example is available.
public static bool Biarc( 
Point2d pt1
Vector2d t1
Point2d pt2
Vector2d t2
out Arc2d a1
out Arc2d a2 
)
This language is not supported or no code example is available.
public:  
static bool Biarc( 
Point2d^ pt1
Vector2d^ t1
Point2d^ pt2
Vector2d^ t2
Arc2d^& a1
Arc2d^& a2 
)
This language is not supported or no code example is available.
public static function Biarc( 
pt1 : Point2d
t1 : Vector2d
pt2 : Point2d
t2 : Vector2d
a1 : Arc2d
a2 : Arc2d 
) : boolean;
This language is not supported or no code example is available.

Parameters

pt1
Point2d

Point 1

t1
Vector2d

Direction 1. Must be Normalized

pt2
Point2d

Point 2

t2
Vector2d

Direction 2. Must be Normalized

a1
Arc2d

Arc 1

a2
Arc2d

Arc 2

Return Value

bool

Returns true is biarc could be created

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition