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

Splits the arc at a single point given by a parameter.
Public Sub Split( _ 
ByVal param As Double, _ 
ByRef arc1 As Arc3d, _ 
ByRef arc2 As Arc3d
)
This language is not supported or no code example is available.
public void Split( 
double param
out Arc3d arc1
out Arc3d arc2 
)
This language is not supported or no code example is available.
public:  
void Split( 
double param
Arc3d^& arc1
Arc3d^& arc2 
)
This language is not supported or no code example is available.
public function Split( 
param : double
arc1 : Arc3d
arc2 : Arc3d 
);
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.

arc1
Arc3d

The sub arc before parameter.

arc2
Arc3d

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