mrdja.geometry.get_distance_from_point_to_plane

mrdja.geometry.get_distance_from_point_to_plane(point: Tuple[float, float, float], plane: Tuple[float, float, float, float]) float[source]

Get the distance from a point to a plane.

Parameters:
  • point (Tuple[float, float, float]) – Point.

  • plane (Tuple[float, float, float, float]) – Plane equation coefficients.

Returns:

Distance from point to plane.

Return type:

float

Example: