is_point_infrontof_plane
- compas.geometry.is_point_infrontof_plane(point, plane, tol=None)[source]
Determine if a point lies in front of a plane.
- Parameters:
- point[float, float, float] |
compas.geometry.Point
A point.
- plane[point, vector]
A plane.
- tolfloat, optional
A tolerance for membership verification.
- point[float, float, float] |
- Returns:
- bool
True if the point is in front of the plane. False otherwise.