is_point_in_halfspace
-
compas.geometry.
is_point_in_halfspace
(point, plane, tol=1e-06) Determine if a point lies in front of a plane.
- Parameters
point ([x, y, z] or
compas.geometry.Point
) – A point.plane ([point, vector] or
compas.geometry.Plane
) – A plane.tol (float, optional) – A tolerance for membership verification. Default is
1e-6
.
- Returns
bool –
True
if the point is in front of the plane.False
otherwise.