mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-06-04 11:14:17 +08:00
Initial work for limiting vibrations
This commit is contained in:
parent
8d557bee8c
commit
96dd106f61
@ -410,6 +410,14 @@ our $Options = {
|
|||||||
type => 'f',
|
type => 'f',
|
||||||
default => 1,
|
default => 1,
|
||||||
},
|
},
|
||||||
|
'vibration_limit' => {
|
||||||
|
label => 'Vibration limit',
|
||||||
|
tooltip => 'This experimental option will slow down those parts hitting the configured frequency limit. The purpose of limiting vibrations is to avoid mechanical resonance.',
|
||||||
|
sidetext => 'Hz',
|
||||||
|
cli => 'vibration-limit=f',
|
||||||
|
type => 'f',
|
||||||
|
default => 15,
|
||||||
|
},
|
||||||
|
|
||||||
# print options
|
# print options
|
||||||
'perimeters' => {
|
'perimeters' => {
|
||||||
|
@ -634,6 +634,10 @@ sub build {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title => 'Advanced',
|
||||||
|
options => [qw(vibration_limit)],
|
||||||
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$self->add_options_page('Custom G-code', 'cog.png', optgroups => [
|
$self->add_options_page('Custom G-code', 'cog.png', optgroups => [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user