From 21a6219b62c7e6ecaf348221d8766d638f832092 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Fri, 23 Nov 2012 11:14:06 +0100 Subject: [PATCH] Disable vibration limit. #785 --- README.markdown | 1 - lib/Slic3r/Config.pm | 2 +- lib/Slic3r/GCode.pm | 2 +- lib/Slic3r/GUI/Tab.pm | 4 ---- slic3r.pl | 1 - 5 files changed, 2 insertions(+), 8 deletions(-) diff --git a/README.markdown b/README.markdown index 102f59ce9..72e961a45 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 ee82957cb..b20f0ee17 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 3daa3ca74..d11035e53 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 b9c445c59..e1469053c 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 6e011ec88..d540fcae4 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