pointcloudset.geometry.point module

Utility functions for geometric calculations with points.

pointcloudset.geometry.point.distance_to_point(point_a: ndarray, point_b: ndarray) float

Calculate the Euclidean distance of a point to another point.

Parameters
Returns

Euclidean distance between two points.

Return type

float

Raises

ValueError – If any of the two points does not have 3 values.