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 void Split( 
   double param1
   double param2
   out Arc2d arc1
   out Arc2d arc2 
)

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