Point.on_circle

Point.on_circle(circle, tol=None)[source]

Determine if the point lies on the given circle.

Parameters:
circlecompas.geometry.Circle

The circle.

tolfloat, optional

A tolerance value for the distance between the point and the circle. Default is TOL.absolute.

Returns:
bool

True, if the point lies on the circle. False, otherwise.