closest_point_on_line
- compas.geometry.closest_point_on_line(point, line)[source]
Computes closest point on line to a given point.
- Parameters:
- point[float, float, float] |
compas.geometry.Point
XYZ coordinates.
- line[point, point] |
compas.geometry.Line
Two points defining the line.
- point[float, float, float] |
- Returns:
- [float, float, float]
XYZ coordinates of closest point.
See also
basic.transformations.project_point_line()
Examples
>>>