Tests if a line is tangent to the circle.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public bool IsTangentTo(
	Line line
)
Visual Basic (Declaration)
Public Function IsTangentTo ( _
	line As Line _
) As Boolean
Visual C++
public:
bool IsTangentTo(
	Line^ line
)

Parameters

line
Type: ceometric.VectorGeometry..::.Line
A line.

Return Value

Returns true if line is coplanar and tangent to the circle, false otherwise.

See Also