compas.geometry.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] or compas.geometry.Plane) – A plane.

  • plane2 ([point, vector] or compas.geometry.Plane) – A plane.

  • tol (float, optional) – A tolerance for intersection verification. Default is 1e-6.

Returns

boolTrue if plane1 intersects with plane2. False otherwise.