123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- package Slic3r::Fill;
- use Moo;
- use Slic3r::Fill::ArchimedeanChords;
- use Slic3r::Fill::Base;
- use Slic3r::Fill::Concentric;
- use Slic3r::Fill::Flowsnake;
- use Slic3r::Fill::HilbertCurve;
- use Slic3r::Fill::Honeycomb;
- use Slic3r::Fill::Line;
- use Slic3r::Fill::OctagramSpiral;
- use Slic3r::Fill::PlanePath;
- use Slic3r::Fill::Rectilinear;
- use Slic3r::ExtrusionPath ':roles';
- use Slic3r::Geometry qw(X Y PI scale chained_path);
- use Slic3r::Geometry::Clipper qw(union_ex diff_ex);
- use Slic3r::Surface ':types';
- has 'print' => (is => 'ro', required => 1);
- has 'fillers' => (is => 'rw', default => sub { {} });
- our %FillTypes = (
- archimedeanchords => 'Slic3r::Fill::ArchimedeanChords',
- rectilinear => 'Slic3r::Fill::Rectilinear',
- flowsnake => 'Slic3r::Fill::Flowsnake',
- octagramspiral => 'Slic3r::Fill::OctagramSpiral',
- hilbertcurve => 'Slic3r::Fill::HilbertCurve',
- line => 'Slic3r::Fill::Line',
- concentric => 'Slic3r::Fill::Concentric',
- honeycomb => 'Slic3r::Fill::Honeycomb',
- );
- sub filler {
- my $self = shift;
- my ($filler) = @_;
-
- if (!ref $self) {
- return $FillTypes{$filler}->new;
- }
-
- if (!$self->fillers->{$filler}) {
- my $f = $self->fillers->{$filler} = $FillTypes{$filler}->new;
- $f->bounding_box([ $self->print->bounding_box ]) if $f->can('bounding_box');
- }
- return $self->fillers->{$filler};
- }
- sub make_fill {
- my $self = shift;
- my ($layerm) = @_;
-
- Slic3r::debugf "Filling layer %d:\n", $layerm->id;
-
- # merge adjacent surfaces
- # in case of bridge surfaces, the ones with defined angle will be attached to the ones
- # without any angle (shouldn't this logic be moved to process_external_surfaces()?)
- my @surfaces = ();
- {
- my @surfaces_with_bridge_angle = grep defined $_->bridge_angle, @{$layerm->fill_surfaces};
-
- # give priority to bridges
- my @groups = Slic3r::Surface->group({merge_solid => 1}, @{$layerm->fill_surfaces});
- @groups = sort { defined $a->[0]->bridge_angle ? -1 : 0 } @groups;
-
- foreach my $group (@groups) {
- my $union = union_ex([ map $_->p, @$group ], undef, 1);
-
- # subtract surfaces having a defined bridge_angle from any other
- if (@surfaces_with_bridge_angle && !defined $group->[0]->bridge_angle) {
- $union = diff_ex(
- [ map @$_, @$union ],
- [ map $_->p, @surfaces_with_bridge_angle ],
- 1,
- );
- }
-
- # subtract any other surface already processed
- $union = diff_ex(
- [ map @$_, @$union ],
- [ map $_->p, @surfaces ],
- 1,
- );
-
- push @surfaces, map Slic3r::Surface->new(
- expolygon => $_,
- surface_type => $group->[0]->surface_type,
- bridge_angle => $group->[0]->bridge_angle,
- depth_layers => $group->[0]->depth_layers,
- ), @$union;
- }
- }
-
- # add spacing between surfaces
- {
- my $distance = $layerm->infill_flow->scaled_spacing / 2;
- @surfaces = map $_->offset(-$distance), @surfaces;
- }
-
- my @fills = ();
- my @fills_ordering_points = ();
- SURFACE: foreach my $surface (@surfaces) {
- my $filler = $Slic3r::Config->fill_pattern;
- my $density = $Slic3r::Config->fill_density;
- my $flow_spacing = $layerm->infill_flow->spacing;
- my $is_bridge = $layerm->id > 0 && $surface->is_bridge;
- my $is_solid = $surface->is_solid;
-
- # force 100% density and rectilinear fill for external surfaces
- if ($surface->surface_type != S_TYPE_INTERNAL) {
- $density = 1;
- $filler = $Slic3r::Config->solid_fill_pattern;
- if ($is_bridge) {
- $filler = 'rectilinear';
- $flow_spacing = $layerm->extruders->{infill}->bridge_flow->spacing;
- } elsif ($surface->surface_type == S_TYPE_INTERNALSOLID) {
- $filler = 'rectilinear';
- }
- } else {
- next SURFACE unless $density > 0;
- }
-
- my @paths;
- {
- my $f = $self->filler($filler);
- $f->layer_id($layerm->id);
- @paths = $f->fill_surface(
- $surface,
- density => $density,
- flow_spacing => $flow_spacing,
- dont_adjust => $is_bridge,
- );
- }
- my $params = shift @paths;
-
- # ugly hack(tm) to get the right amount of flow (GCode.pm should be fixed)
- $params->{flow_spacing} = $layerm->extruders->{infill}->bridge_flow->width if $is_bridge;
-
- # save into layer
- next unless @paths;
- push @fills, Slic3r::ExtrusionPath::Collection->new(
- paths => [
- map Slic3r::ExtrusionPath->pack(
- polyline => Slic3r::Polyline->new(@$_),
- role => ($is_bridge
- ? EXTR_ROLE_BRIDGE
- : $is_solid
- ? ($surface->surface_type == S_TYPE_TOP ? EXTR_ROLE_TOPSOLIDFILL : EXTR_ROLE_SOLIDFILL)
- : EXTR_ROLE_FILL),
- height => $surface->depth_layers * $layerm->height,
- flow_spacing => $params->{flow_spacing} || (warn "Warning: no flow_spacing was returned by the infill engine, please report this to the developer\n"),
- ), @paths,
- ],
- );
- push @fills_ordering_points, $paths[0][0];
- }
-
- # add thin fill regions
- push @fills, @{$layerm->thin_fills};
- push @fills_ordering_points, map $_->unpack->points->[0], @{$layerm->thin_fills};
-
- # organize infill paths using a nearest-neighbor search
- @fills = @fills[ chained_path(\@fills_ordering_points) ];
-
- return @fills;
- }
- 1;
|