intersection_line_plane
- compas.geometry.intersection_line_plane(line, plane, tol=None)[source]
Computes the intersection point of a line and a plane
- Parameters:
- line[point, point] |
compas.geometry.Line
Two points defining the line.
- plane[point, vector]
The base point and normal defining the plane.
- tolfloat, optional
Tolerance for evaluating that the dot product of the line direction and the plane normal is zero. Default is
TOL.absolute
.
- line[point, point] |
- Returns:
- [float, float, float] | None
The intersection point between the line and the plane, or None if the line and the plane are parallel.