Arc2d.IsCirclePointOnArc (Point2d) 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 false. This function is much faster than IsOn(...), but only works well for points that is known to be on/close to the circle.
Public Function IsCirclePointOnArc( _ 
ByVal circpoint As Point2d
) As Boolean
This language is not supported or no code example is available.
public bool IsCirclePointOnArc( 
Point2d circpoint 
)
This language is not supported or no code example is available.
public:  
bool IsCirclePointOnArc( 
Point2d^ circpoint 
)
This language is not supported or no code example is available.
public function IsCirclePointOnArc( 
circpoint : Point2d 
) : 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.

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