is_point_in_circle

compas.geometry.is_point_in_circle(point, circle, tol=None)[source]

Determine if a point lies in a circle.

Parameters:
point[float, float, float] | compas.geometry.Point

A point.

circle[plane, float]

A circle.

Returns:
bool

True if the point lies in the circle. False otherwise.