Arc2d.IsCirclePointOnArc (Point2d, Double) Method

Checks if a point that is on the circle the arc is a part of is actually included in the arc. If the arc equals a line segment, it returns true if the point is on the segment. This function is much faster than IsOn(...), but only works well for points that is known to be on/close to the circle (or on the infinite line).
Public Function IsCirclePointOnArc( _ 
ByVal circpoint As Point2d, _ 
ByVal tol As Double
) As Boolean
This language is not supported or no code example is available.
public bool IsCirclePointOnArc( 
Point2d circpoint
double tol 
)
This language is not supported or no code example is available.
public:  
bool IsCirclePointOnArc( 
Point2d^ circpoint
double tol 
)
This language is not supported or no code example is available.
public function IsCirclePointOnArc( 
circpoint : Point2d
tol : double 
) : boolean;
This language is not supported or no code example is available.

Parameters

circpoint
Point2d

The point on the circle. If the point is not on the circle, the result is undefined.

tol
double

Tolerance parameter

Return Value

bool

true if the circle point is included in the arc.

.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