Circle2d.Split (Double, Double, out Arc2d, out Arc2d) Method

Splits the circle in two arcs using two parameters. The parameters are in the range 0.0 - 2*PI, with parameter 0.0 beeing the right quadrant of the circle. If the two parameters is equal, two zero length arcs will be computed since an arc cannot have an included angle of 360 degrees.
Public Sub Split( _ 
ByVal param1 As Double, _ 
ByVal param2 As Double, _ 
ByRef arc1 As Arc2d, _ 
ByRef arc2 As Arc2d
)
This language is not supported or no code example is available.
public void Split( 
double param1
double param2
out Arc2d arc1
out Arc2d arc2 
)
This language is not supported or no code example is available.
public:  
void Split( 
double param1
double param2
Arc2d^& arc1
Arc2d^& arc2 
)
This language is not supported or no code example is available.
public function Split( 
param1 : double
param2 : double
arc1 : Arc2d
arc2 : Arc2d 
);
This language is not supported or no code example is available.

Parameters

param1
double

The first parameter to split at.

param2
double

The second parameter to split at.

arc1
Arc2d

The counter clockwise arc from parm1 to param2.

arc2
Arc2d

The counter clockwise arc from param2 to param1.

.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