mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-23 22:54:08 -06:00
Don't extrude acute angles
This commit is contained in:
parent
25ea8a0204
commit
ea88cad8e3
4 changed files with 52 additions and 5 deletions
|
@ -52,4 +52,11 @@ sub shortest_path {
|
|||
return @paths;
|
||||
}
|
||||
|
||||
sub cleanup {
|
||||
my $self = shift;
|
||||
|
||||
# split paths at angles that are too acute to be printed as they will cause blobs
|
||||
@{$self->paths} = map $_->split_at_acute_angles, @{$self->paths};
|
||||
}
|
||||
|
||||
1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue