I want to compare the distances between some geometrical objects in a robust way. For instance, I want to measure perpendicular distance between a point and a plane. I want to do this measurement to many planes from the same point. In the end, I want to pick the closest plane to my point.
Since the double/float operations cause inexact computations, I want to do this operation by using CGAL's robustness predicates. However, I do not have the theoretical background about the predicates. I have seen that there are concepts like "Filtered_predicate", "Exact_predicates_inexact_constructions_kernel". I do not which one to use and how to use. Could you help me?
My guess is to define the point and planes with "Exact_predicates_inexact_constructions_kernel". And then call Exact_predicates_inexact_constructions_kernel::FT CGAL::squared_distance(plane, point) method. And then compare the FT result obtained by each plane.Is it a right approach?
I have written the following code by using filtered_predicate. It works for now, yet I did not try with nearly-planar planes.
The only part that I am not sure is whether I should put the whole calculation inside filtered_kernel, or filtering only the in_sphere test is enough. I do not need any interstep computation (like constructing the sphere exactly, finding the point-plane distance, projecting point onto plane) to be accurate, yet I want the latest output (which is the closest plane) to be exact.