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

@ -75,18 +75,9 @@ public:
: 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