diff --git a/xs/src/libslic3r/Model.hpp b/xs/src/libslic3r/Model.hpp index 7be13cd8f..11069cf62 100644 --- a/xs/src/libslic3r/Model.hpp +++ b/xs/src/libslic3r/Model.hpp @@ -468,8 +468,12 @@ class ModelVolume public: std::string name; ///< Name of this ModelVolume object - TriangleMesh mesh; ///< The triangular model. - TransformationMatrix trafo; ///< The transformation matrix of this volume + TriangleMesh mesh; ///< The triangular model + + TransformationMatrix trafo; + ///< The transformation matrix of this volume, representing which transformation has been + ///< applied to the mesh + DynamicPrintConfig config; ///< Configuration parameters specific to an object model geometry or a modifier volume, ///< overriding the global Slic3r settings and the ModelObject settings.