hbf / miniball

Fast computation of the smallest enclosing ball of a point set, in low or moderately high dimensions.
133 stars 41 forks source link

Constant point set #21

Closed IntellectualKitty closed 7 years ago

IntellectualKitty commented 7 years ago

The const type qualifier is applied to the set of points in the Smallest_enclosing_ball constructor and internal storage.

In the project that I'm trying to integrate Miniball into, the set of points that I have to work with is in a const vector. My only alternative would be to replicate the point set that I pass to Smallest_enclosing_ball, which is undesirable since bounding spheres may be computed in realtime.

hbf commented 7 years ago

Oh sure — makes complete sense. Again, thank you were much for the change and the clear description!

IntellectualKitty commented 7 years ago

It's my pleasure.