is_point_in_circle_xy

compas.geometry.is_point_in_circle_xy(point, circle)[source]

Determine if a point lies in a circle lying on the XY-plane.

Parameters
  • point (sequence of float) – XY(Z) coordinates of a 2D or 3D point (Z will be ignored).

  • circle (tuple) – center, radius of the circle on the xy plane.

Returns

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