Point.on_circle
- Point.on_circle(circle, tol=None)[source]
Determine if the point lies on the given circle.
- Parameters:
- circle
compas.geometry.Circle
The circle.
- tolfloat, optional
A tolerance value for the distance between the point and the circle. Default is
TOL.absolute
.
- circle
- Returns:
- bool
True, if the point lies on the circle. False, otherwise.