Circle2d.CommonTangents Method

Computes the lines thar are common tangents from this circle to another. There might be 0,2 or 4 solutions. If there are 2 solutions, they are external tangents. If there are 4, the two first are external and the second two are internal.
Public Function CommonTangents( _ 
ByVal c2 As Circle2d
) As Line2d()
This language is not supported or no code example is available.
public Line2d[] CommonTangents( 
Circle2d c2 
)
This language is not supported or no code example is available.
public:  
array< Line2d^ >^ CommonTangents( 
Circle2d^ c2 
)
This language is not supported or no code example is available.
public function CommonTangents( 
c2 : Circle2d 
) : Line2d[];
This language is not supported or no code example is available.

Parameters

c2
Circle2d

Return Value

Line2d[]

.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