Added an accessor to get a const reference to the underlying model object.

This commit is contained in:
Joseph Lenox 2018-07-18 22:27:34 -05:00
parent 1742b64ce7
commit 6676368a34

View File

@ -114,6 +114,7 @@ class PrintObject
Print* print();
ModelObject* model_object() { return this->_model_object; };
const ModelObject& model_object() const { return *(this->_model_object); };
Points copies() const;
bool add_copy(const Pointf &point);