is_intersection_plane_plane
- compas.geometry.is_intersection_plane_plane(plane1, plane2, tol=1e-06)[source]
Verifies if two planes intersect.
- Parameters
plane1 ([point, vector] |
compas.geometry.Plane
) – A plane.plane2 ([point, vector] |
compas.geometry.Plane
) – A plane.tol (float, optional) – A tolerance for intersection verification.
- Returns
bool – True if plane1 intersects with plane2. False otherwise.