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() {
|
std::size_t maxLevel() { return m_max_level; }
|
||||||
return m_max_level;
|
|
||||||
}
|
|
||||||
|
|
||||||
const Bbox_3 &boundingBox() {
|
const Bbox_3 &boundingBox() const { return m_bBox; }
|
||||||
return m_bBox;
|
|
||||||
}
|
|
||||||
|
|
||||||
const Cell *root() const { return m_root; }
|
const Cell *root() const { return m_root; }
|
||||||
|
|
||||||
|
FT width() const { return m_width; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
Sd_traits m_traits;
|
Sd_traits m_traits;
|
||||||
Bbox_3 m_bBox;
|
Bbox_3 m_bBox;
|
||||||
Cell *m_root;
|
Cell *m_root;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue