Implementation of "XY size Compensation for first layer"

https://github.com/prusa3d/Slic3r/issues/190
This commit is contained in:
bubnikv 2017-06-26 16:28:10 +02:00
parent 32fa84c5a5
commit 8160db23cc
5 changed files with 21 additions and 2 deletions

View file

@ -165,6 +165,7 @@ class PrintObjectConfig : public virtual StaticPrintConfig
public:
ConfigOptionBool clip_multipart_objects;
ConfigOptionBool dont_support_bridges;
ConfigOptionFloat elefant_foot_compensation;
ConfigOptionFloatOrPercent extrusion_width;
ConfigOptionFloatOrPercent first_layer_height;
ConfigOptionBool infill_only_where_needed;
@ -203,6 +204,7 @@ public:
virtual ConfigOption* optptr(const t_config_option_key &opt_key, bool create = false) {
OPT_PTR(clip_multipart_objects);
OPT_PTR(dont_support_bridges);
OPT_PTR(elefant_foot_compensation);
OPT_PTR(extrusion_width);
OPT_PTR(first_layer_height);
OPT_PTR(infill_only_where_needed);