mirror of https://github.com/CGAL/cgal
Readability changes in Alpha_shapes_2
This commit is contained in:
parent
72908fc076
commit
ad27f5c39b
|
|
@ -64,29 +64,20 @@ 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;
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue