mirror of https://github.com/CGAL/cgal
Add const width accessor
This commit is contained in:
parent
32541f0074
commit
587766f3e3
|
|
@ -444,16 +444,16 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
std::size_t maxLevel() {
|
||||
return m_max_level;
|
||||
}
|
||||
std::size_t maxLevel() { return m_max_level; }
|
||||
|
||||
const Bbox_3 &boundingBox() {
|
||||
return m_bBox;
|
||||
}
|
||||
const Bbox_3 &boundingBox() const { return m_bBox; }
|
||||
|
||||
const Cell *root() const { return m_root; }
|
||||
|
||||
FT width() const { return m_width; }
|
||||
|
||||
private:
|
||||
|
||||
Sd_traits m_traits;
|
||||
Bbox_3 m_bBox;
|
||||
Cell *m_root;
|
||||
|
|
|
|||
Loading…
Reference in New Issue