Add const width accessor

This commit is contained in:
Jackson Campolattaro 2020-07-29 14:57:45 -04:00
parent 32541f0074
commit 587766f3e3
1 changed files with 6 additions and 6 deletions

View File

@ -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;