diff --git a/README.markdown b/README.markdown index 102f59ce..72e961a4 100644 --- a/README.markdown +++ b/README.markdown @@ -263,7 +263,6 @@ The author of the Silk icon set is Mark James. --support-material-extrusion-width Set a different extrusion width for support material --bridge-flow-ratio Multiplier for extrusion when bridging (> 0, default: 1) - --vibration-limit Experimental frequency limit to avoid resonance (Hz, default: 25) Multiple extruder options: --extruder-offset Offset of each extruder, if firmware doesn't handle the displacement diff --git a/lib/Slic3r/Config.pm b/lib/Slic3r/Config.pm index ee82957c..b20f0ee1 100644 --- a/lib/Slic3r/Config.pm +++ b/lib/Slic3r/Config.pm @@ -416,7 +416,7 @@ our $Options = { sidetext => 'Hz', cli => 'vibration-limit=f', type => 'f', - default => 25, + default => 0, }, # print options diff --git a/lib/Slic3r/GCode.pm b/lib/Slic3r/GCode.pm index 3daa3ca7..d11035e5 100644 --- a/lib/Slic3r/GCode.pm +++ b/lib/Slic3r/GCode.pm @@ -168,7 +168,7 @@ sub extrude_path { } # only apply vibration limiting to gap fill until the algorithm is more mature - $self->limit_frequency($path->role == EXTR_ROLE_GAPFILL); + $self->limit_frequency($path->role == EXTR_ROLE_GAPFILL) if 0; # go to first point of extrusion path $self->speed('travel'); diff --git a/lib/Slic3r/GUI/Tab.pm b/lib/Slic3r/GUI/Tab.pm index b9c445c5..e1469053 100644 --- a/lib/Slic3r/GUI/Tab.pm +++ b/lib/Slic3r/GUI/Tab.pm @@ -634,10 +634,6 @@ sub build { }, ], }, - { - title => 'Advanced', - options => [qw(vibration_limit)], - }, ]); $self->add_options_page('Custom G-code', 'cog.png', optgroups => [ diff --git a/slic3r.pl b/slic3r.pl index 6e011ec8..d540fcae 100755 --- a/slic3r.pl +++ b/slic3r.pl @@ -311,7 +311,6 @@ $j --support-material-extrusion-width Set a different extrusion width for support material --bridge-flow-ratio Multiplier for extrusion when bridging (> 0, default: $config->{bridge_flow_ratio}) - --vibration-limit Experimental frequency limit to avoid resonance (Hz, default: $config->{vibration_limit}) Multiple extruder options: --extruder-offset Offset of each extruder, if firmware doesn't handle the displacement