is_point_in_circle
- compas.geometry.is_point_in_circle(point, circle)[source]
Determine if a point lies in a circle.
- Parameters
point ([x, y, z] or
compas.geometry.Point
) – A point.circle ([point, float, vector]) – A circle.
- Returns
bool –
True
if the point lies in the circle.False
otherwise.