Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ExtrusionLoop.pm « Slic3r « lib - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7df64a1e8f118e418db83d589e9f7eb402d0aa87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package Slic3r::ExtrusionLoop;
use Moo;

use XXX;

extends 'Slic3r::Polyline::Closed';

# perimeter/fill/solid-fill/bridge/skirt
has 'role'         => (is => 'rw', required => 1);

sub split_at {
    my $self = shift;
    my ($point) = @_;
    
    $point = Slic3r::Point->new($point);
    
    # find index of point
    my $i = -1;
    for (my $n = 0; $n <= $#{$self->points}; $n++) {
        if ($point->id eq $self->points->[$n]->id) {
            $i = $n;
            last;
        }
    }
    die "Point not found" if $i == -1;
    
    my @new_points = ();
    push @new_points, @{$self->points}[$i .. $#{$self->points}];
    push @new_points, @{$self->points}[0 .. $i];
    
    return Slic3r::ExtrusionPath->new(points => [@new_points], role => $self->role);
}

1;