Arc2d.CreateSACA Method

Creates an arc given startpoint, start direction, center and end direction
Public Shared Function CreateSACA( _ 
ByVal start As Point2d, _ 
ByVal startangle As Double, _ 
ByVal center As Point2d, _ 
ByVal endangle As Double
) As Arc2d
This language is not supported or no code example is available.
public static Arc2d CreateSACA( 
Point2d start
double startangle
Point2d center
double endangle 
)
This language is not supported or no code example is available.
public:  
static Arc2d^ CreateSACA( 
Point2d^ start
double startangle
Point2d^ center
double endangle 
)
This language is not supported or no code example is available.
public static function CreateSACA( 
start : Point2d
startangle : double
center : Point2d
endangle : double 
) : Arc2d;
This language is not supported or no code example is available.

Parameters

start
Point2d

Start point

startangle
double

Start direction as an angle

center
Point2d

Center of arc

endangle
double

End direction as an angle

Return Value

Arc2d

The arc with given parameters

.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