mirror of https://github.com/CGAL/cgal
The old changes in Implicit_mesh_domain_3 are obsolete.
Periodic domain isn't based on Implicit_mesh_domain_3 anymore. So, these modifications making Implicit_mesh_domain_3 compatible with periodic cases are obsolete.
This commit is contained in:
parent
5964ef650f
commit
1515e3bb76
|
|
@ -55,8 +55,6 @@ public:
|
|||
|
||||
/// Public types
|
||||
typedef typename Base::Sphere_3 Sphere_3;
|
||||
typedef typename BGT::Iso_cuboid_3 Iso_cuboid_3;
|
||||
typedef typename Base::Bbox_3 Bbox_3;
|
||||
typedef typename Base::FT FT;
|
||||
typedef BGT Geom_traits;
|
||||
|
||||
|
|
@ -69,23 +67,11 @@ public:
|
|||
Implicit_mesh_domain_3(const Function& f,
|
||||
const Sphere_3& bounding_sphere,
|
||||
const FT& error_bound = FT(1e-3))
|
||||
: Base(Wrapper(f), bounding_sphere, error_bound) {}
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* @param f the function which negative values defines the domain
|
||||
* @param bbox a bounding box of the domain, periodic domain
|
||||
* @param error_bound the error bound relative to the sphere radius
|
||||
*/
|
||||
Implicit_mesh_domain_3(Function& f,
|
||||
const Bbox_3& bbox,
|
||||
const FT& error_bound = FT(1e-3))
|
||||
: Base(Wrapper(f), bbox, error_bound) {}
|
||||
: Base(Wrapper(f), bounding_sphere, error_bound) {}
|
||||
|
||||
/// Destructor
|
||||
virtual ~Implicit_mesh_domain_3() {}
|
||||
|
||||
const Iso_cuboid_3& periodic_cuboid() const { return Base::bounding_box(); }
|
||||
|
||||
private:
|
||||
// Disabled copy constructor & assignment operator
|
||||
|
|
|
|||
Loading…
Reference in New Issue