mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 19:33:47 +00:00
Faster support generation. Includes a new implementation of the Douglas-Peucker algorithm
This commit is contained in:
@@ -109,7 +109,6 @@ sub subdivide {
|
||||
my $len = Slic3r::Geometry::line_length([ $self->[$i-1], $self->[$i] ]);
|
||||
my $num_points = int($len / $max_length) - 1;
|
||||
$num_points++ if $len % $max_length;
|
||||
next unless $num_points;
|
||||
|
||||
# $num_points is the number of points to add between $i-1 and $i
|
||||
my $spacing = $len / ($num_points + 1);
|
||||
|
||||
Reference in New Issue
Block a user