Didn't work for me - def closest_point_on_curve(target,curve): """Returns the 3D point on the curve closest to target 3D point""" Response: - return closest_point_on_curve_3d(target,curve)
def point_line_projection(line,point): """Returns the perpendicular projection of the point on the line.""" return line.point_projection(point)
def line_intersection(line1,line2): """Returns the intersection point of two lines.""" return line1.intersection(line2)
def line_intersection_point(line1,line2): """Returns the intersection point of two lines.""" return line1.intersection_point(line2)
def line_intersection_point_line(line1,line2): """Returns the intersection point of two lines.""" return line1.intersection_point_line(line2)
def line_intersection_point_line_parallel(line1,line2): """Returns the intersection point of two lines.""" return line1.intersection_point_line_parallel(line2)
def line_intersection_point_line_parallel_point(line1,line2,point): """Returns the intersection point of two lines.""" return line1.intersection_point_line_parallel
...