From c8bb8018da3be3a1a0d18907d3371cf7fd25b162 Mon Sep 17 00:00:00 2001 From: Sven Oesau Date: Tue, 10 Dec 2024 13:56:52 +0100 Subject: [PATCH] CI fix --- .../CGAL/Polygon_mesh_processing/non_rigid_mesh_registration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/non_rigid_mesh_registration.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/non_rigid_mesh_registration.h index b20c9f1f850..f5048b3736f 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/non_rigid_mesh_registration.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/non_rigid_mesh_registration.h @@ -534,7 +534,7 @@ void non_rigid_mesh_to_points_registration(const TriangleMesh& source, kdtree.build(); if (max_matching_dist < 0) { - FT sum = 0; + double sum = 0; for (Index i = 0; i < Y.rows(); ++i) { Point_3 query_pt = { Y(i, 0), Y(i, 1), Y(i, 2) }; Neighbor_search search(kdtree, query_pt, 2, 0, true, Neighbor_search::Distance(Eigen_matrix_to_point_map(Y)));