Plane.intersections_with_curve
- Plane.intersections_with_curve(curve, tol=None)[source]
- Compute the intersection of a plane and a curve. - Parameters:
- curvecompas.geometry.Curve
- The curve. 
- tolfloat, optional
- Tolerance for the dot product of the line vector and the plane normal. Default is - TOL.absolute.
 
- curve
- Returns:
- list of compas.geometry.Point
- The intersection points. 
 
- list of