mrdja.geometry.get_point_of_plane_closest_to_given_point
- mrdja.geometry.get_point_of_plane_closest_to_given_point(plane: ndarray, point: ndarray) ndarray[source]
Get the point of a plane closest to a given point.
- Parameters:
plane (np.ndarray) – Plane described as Ax + By + Cz + D = 0.
point (np.ndarray) – Point.
- Returns:
Point of plane closest to given point.
- Return type:
np.ndarray
- Example: