Apollonius2d.ComputeTanTanRadius Method

Computes the circles with a specified radius that tangents 2 other objects. The objects to tangent should be of type IPosition2d, ICircular2d or a Line2d. If any other type of geometry is given, an exception will be thrown.
Public Shared Function ComputeTanTanRadius( _ 
ByVal e1 As Geometry2d, _ 
ByVal e2 As Geometry2d, _ 
ByVal rad As Double
) As List(Of Circle2d)
This language is not supported or no code example is available.
public static List<Circle2d> ComputeTanTanRadius( 
Geometry2d e1
Geometry2d e2
double rad 
)
This language is not supported or no code example is available.
public:  
static List<Circle2d^>^ ComputeTanTanRadius( 
Geometry2d^ e1
Geometry2d^ e2
double rad 
)
This language is not supported or no code example is available.
JScript does not support generic types and methods.
This language is not supported or no code example is available.

Parameters

e1
Geometry2d

The first object to tangent.

e2
Geometry2d

The second object to tangent.

rad
double

The radius of the circles computed.

Return Value

List<Circle2d>

A list of new circles, which all tangents the objects e1 and e2.

.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