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

@ -65,28 +65,19 @@ private:
public: public:
Alpha_shape_vertex_base_2() Alpha_shape_vertex_base_2()
: Vb() : Vb()
{} {}
Alpha_shape_vertex_base_2(const Point & p) Alpha_shape_vertex_base_2(const Point & p)
: Vb(p) : Vb(p)
{} {}
Alpha_shape_vertex_base_2(const Point & p, Face_handle f) Alpha_shape_vertex_base_2(const Point & p, Face_handle f)
: Vb(p, f) : Vb(p, f)
{} {}
public: public:
inline Interval2 get_range() { return I; }
inline Interval2 get_range() inline void set_range(Interval2 Inter) { I = Inter; }
{
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> // Author(s) : Sébastien Loriot <sebastien.loriot@geometryfactory.com>
// Mael Rouxel-Labbé // Mael Rouxel-Labbé
#ifndef CGAL_INTERNAL_LAZY_ALPHA_NT_2_H #ifndef CGAL_INTERNAL_LAZY_ALPHA_NT_2_H
#define CGAL_INTERNAL_LAZY_ALPHA_NT_2_H #define CGAL_INTERNAL_LAZY_ALPHA_NT_2_H