is_point_on_plane

compas.geometry.is_point_on_plane(point, plane, tol=1e-06)[source]

Determine if a point lies on a plane.

Parameters
  • point ([float, float, float] | Point) – A point.

  • plane ([point, vector] | Plane) – A plane.

  • tol (float, optional) – A tolerance for membership verification.

Returns

bool – True if the point is in on the plane. False otherwise.