Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finer Gap Filling until Medial Axis is used. #1057

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/Slic3r/Layer/Region.pm
Expand Up @@ -290,7 +290,10 @@ sub make_perimeters {
)}; )};


my $w = $self->perimeter_flow->width; my $w = $self->perimeter_flow->width;
my @widths = (1.5 * $w, $w, 0.5 * $w); # worth trying 0.2 too? # 1.5 and 1.0 do nothing.
# Anything 1.0 or bigger shoudl get filled with a single perimeter.
# The settings below work really well, and almost completely fill the small slivers.
my @widths = (0.4 * $w, 0.04 * $w);
foreach my $width (@widths) { foreach my $width (@widths) {
my $flow = $self->perimeter_flow->clone(width => $width); my $flow = $self->perimeter_flow->clone(width => $width);


Expand Down