Alessandro Ranellucci 12 лет назад
Родитель
Сommit
21a6219b62
5 измененных файлов с 2 добавлено и 8 удалено
  1. 0 1
      README.markdown
  2. 1 1
      lib/Slic3r/Config.pm
  3. 1 1
      lib/Slic3r/GCode.pm
  4. 0 4
      lib/Slic3r/GUI/Tab.pm
  5. 0 1
      slic3r.pl

+ 0 - 1
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

+ 1 - 1
lib/Slic3r/Config.pm

@@ -416,7 +416,7 @@ our $Options = {
         sidetext => 'Hz',
         cli     => 'vibration-limit=f',
         type    => 'f',
-        default => 25,
+        default => 0,
     },
     
     # print options

+ 1 - 1
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');

+ 0 - 4
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 => [

+ 0 - 1
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