Fix unused variable warnings by disabling not-yet-implemented function

This commit is contained in:
Mael Rouxel-Labbé 2024-03-27 10:41:08 +01:00
parent cb1fed2ac8
commit e73380f647
1 changed files with 5 additions and 8 deletions

View File

@ -184,6 +184,10 @@ struct Linear_interpolation_edge_intersection
*
* This class is suitable when the values stem from a signed distance function.
*/
//
// @todo this is for the case where we know domain.value is an SDF
// then we can do better than a dichotomy
// Take code from the AW3 sharp branch
struct Ray_marching_edge_intersection
{
template <typename Domain> // == Isosurfacing_domain_3 or similar
@ -193,14 +197,7 @@ struct Ray_marching_edge_intersection
const typename Domain::Geom_traits::FT val_1,
const Domain& domain,
const typename Domain::Geom_traits::FT isovalue,
typename Domain::Geom_traits::Point_3& p) const
{
// @todo this is for the case where we know domain.value is an SDF
// then we can do better than a dichotomy
// Take code from the AW3 sharp branch
CGAL_assertion(false);
return false;
}
typename Domain::Geom_traits::Point_3& p) const;
};
} // namespace Isosurfacing