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

Splits the arc at a single point given by a parameter.
Public Sub Split( _ 
ByVal param As Double, _ 
ByRef part1 As Arc2d, _ 
ByRef part2 As Arc2d
)
This language is not supported or no code example is available.
public void Split( 
double param
out Arc2d part1
out Arc2d part2 
)
This language is not supported or no code example is available.
public:  
void Split( 
double param
Arc2d^& part1
Arc2d^& part2 
)
This language is not supported or no code example is available.
public function Split( 
param : double
part1 : Arc2d
part2 : Arc2d 
);
This language is not supported or no code example is available.

Parameters

param
double

The split parameter in the range 0.0 - 1.0. If the parameter is out of bounds, a copy of this arc and a zero length arc will be created.

part1
Arc2d

The sub arc before parameter.

part2
Arc2d

The sub arc after parameter.

.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