Readability changes in Alpha_shapes_2

This commit is contained in:
Mael Rouxel-Labbé 2017-08-23 11:04:46 +02:00
parent 72908fc076
commit ad27f5c39b
2 changed files with 9 additions and 17 deletions

View File

@ -64,29 +64,20 @@ private:
public:
Alpha_shape_vertex_base_2()
: Vb()
{}
: Vb()
{}
Alpha_shape_vertex_base_2(const Point & p)
: Vb(p)
{}
: Vb(p)
{}
Alpha_shape_vertex_base_2(const Point & p, Face_handle f)
: Vb(p, f)
{}
: Vb(p, f)
{}
public:
inline Interval2 get_range()
{
return I;
}
inline void set_range(Interval2 Inter)
{
I = Inter;
}
inline Interval2 get_range() { return I; }
inline void set_range(Interval2 Inter) { I = Inter; }
};

View File

@ -14,6 +14,7 @@
//
// Author(s) : Sébastien Loriot <sebastien.loriot@geometryfactory.com>
// Mael Rouxel-Labbé
#ifndef CGAL_INTERNAL_LAZY_ALPHA_NT_2_H
#define CGAL_INTERNAL_LAZY_ALPHA_NT_2_H