2011-09-05 10:21:27 +00:00
package Slic3r::Fill::Rectilinear ;
2011-09-06 09:50:43 +00:00
use Moo ;
2011-09-05 10:21:27 +00:00
2011-10-06 11:43:32 +00:00
extends 'Slic3r::Fill::Base' ;
2011-12-13 16:34:31 +00:00
use Slic3r::Geometry qw( X1 Y1 X2 Y2 A B X Y scale unscale epsilon ) ;
2011-09-05 10:21:27 +00:00
2011-10-06 11:43:32 +00:00
sub fill_surface {
2011-09-05 10:21:27 +00:00
my $ self = shift ;
2011-10-06 11:43:32 +00:00
my ( $ surface , % params ) = @ _ ;
# rotate polygons so that we can work with vertical lines here
2012-04-09 20:04:57 +00:00
my $ expolygon = $ surface - > expolygon - > clone ;
2011-10-07 17:07:57 +00:00
my $ rotate_vector = $ self - > infill_direction ( $ surface ) ;
2011-11-13 17:14:02 +00:00
$ self - > rotate_points ( $ expolygon , $ rotate_vector ) ;
2011-10-06 11:43:32 +00:00
2012-08-24 16:59:23 +00:00
my ( $ expolygon_off ) = $ expolygon - > offset_ex ( scale $ params { flow_spacing } / 2 ) ;
2012-03-10 22:49:24 +00:00
return { } if ! $ expolygon_off ; # skip some very small polygons (which shouldn't arrive here)
2012-05-19 19:57:47 +00:00
my $ bounding_box = [ $ expolygon - > bounding_box ] ;
2011-12-04 15:24:46 +00:00
2011-12-17 18:52:34 +00:00
my $ min_spacing = scale $ params { flow_spacing } ;
2011-12-04 15:24:46 +00:00
my $ distance_between_lines = $ min_spacing / $ params { density } ;
my $ line_oscillation = $ distance_between_lines - $ min_spacing ;
2011-12-19 08:55:03 +00:00
my $ flow_spacing ;
if ( $ params { density } == 1 ) {
$ distance_between_lines = $ self - > adjust_solid_spacing (
width = > $ bounding_box - > [ X2 ] - $ bounding_box - > [ X1 ] ,
distance = > $ distance_between_lines ,
) ;
$ flow_spacing = unscale $ distance_between_lines ;
}
2011-12-17 19:29:06 +00:00
2012-06-06 16:05:03 +00:00
my $ overlap_distance = scale ( $ self - > layer ? $ self - > layer - > flow - > width : $ Slic3r:: flow - > width ) * 0.4 ;
2011-10-06 11:43:32 +00:00
2011-10-06 13:24:21 +00:00
my $ x = $ bounding_box - > [ X1 ] ;
2011-11-14 09:31:07 +00:00
my $ is_line_pattern = $ self - > isa ( 'Slic3r::Fill::Line' ) ;
2012-04-09 09:04:32 +00:00
my @ vertical_lines = ( ) ;
2011-12-22 17:55:18 +00:00
for ( my $ i = 0 ; $ x <= $ bounding_box - > [ X2 ] + scale epsilon ; $ i + + ) {
2012-02-25 21:15:34 +00:00
my $ vertical_line = Slic3r::Line - > new ( [ $ x , $ bounding_box - > [ Y2 ] ] , [ $ x , $ bounding_box - > [ Y1 ] ] ) ;
2011-11-14 09:31:07 +00:00
if ( $ is_line_pattern && $ i % 2 ) {
2012-03-04 10:45:45 +00:00
$ vertical_line - > [ A ] [ X ] += $ line_oscillation ;
$ vertical_line - > [ B ] [ X ] -= $ line_oscillation ;
2011-11-14 09:31:07 +00:00
}
2012-04-09 09:04:32 +00:00
push @ vertical_lines , $ vertical_line ;
2011-12-04 15:24:46 +00:00
$ x += $ distance_between_lines ;
}
2012-08-24 16:59:23 +00:00
# clip paths against a slightly offsetted expolygon, so that the first and last paths
# are kept even if the expolygon has vertical sides
2012-04-09 09:04:32 +00:00
my @ paths = @ { Boost::Geometry::Utils:: polygon_linestring_intersection (
2012-08-24 16:59:23 +00:00
+ ( $ expolygon - > offset_ex ( scale epsilon ) ) [ 0 ] - > boost_polygon , # TODO: we should use all the resulting expolygons and clip the linestrings to a multipolygon object
2012-04-09 09:04:32 +00:00
Boost::Geometry::Utils:: linestring ( @ vertical_lines ) ,
) } ;
for ( @ paths ) {
$ _ - > [ 0 ] [ Y ] += $ overlap_distance ;
$ _ - > [ - 1 ] [ Y ] -= $ overlap_distance ;
}
2011-12-04 15:24:46 +00:00
# connect lines
2011-12-16 17:37:43 +00:00
{
2011-12-04 15:24:46 +00:00
my $ collection = Slic3r::ExtrusionPath::Collection - > new (
2012-05-19 13:40:11 +00:00
paths = > [ map Slic3r::ExtrusionPath - > new ( polyline = > Slic3r::Polyline - > new ( @$ _ ) , role = > - 1 ) , @ paths ] ,
2011-12-04 15:24:46 +00:00
) ;
@ paths = ( ) ;
2012-06-19 16:49:46 +00:00
my $ tolerance = 10 * scale epsilon ;
2012-05-04 18:51:09 +00:00
my $ diagonal_distance = $ distance_between_lines * 5 ;
my $ can_connect = $ is_line_pattern
? sub {
( $ _ [ X ] >= ( $ distance_between_lines - $ line_oscillation ) - $ tolerance ) && ( $ _ [ X ] <= ( $ distance_between_lines + $ line_oscillation ) + $ tolerance )
2012-06-23 18:27:28 +00:00
&& $ _ [ Y ] <= $ diagonal_distance
2012-05-04 18:51:09 +00:00
}
2012-06-23 20:43:23 +00:00
: sub { abs ( $ _ [ X ] - $ distance_between_lines ) <= $ tolerance && $ _ [ Y ] <= $ diagonal_distance } ;
2011-12-04 15:24:46 +00:00
foreach my $ path ( $ collection - > shortest_path ) {
if ( @ paths ) {
2012-06-23 18:27:28 +00:00
my @ distance = map abs ( $ path - > points - > [ 0 ] [ $ _ ] - $ paths [ - 1 ] [ - 1 ] [ $ _ ] ) , ( X , Y ) ;
2011-12-04 15:24:46 +00:00
# TODO: we should also check that both points are on a fill_boundary to avoid
# connecting paths on the boundaries of internal regions
2012-03-04 10:26:11 +00:00
if ( $ can_connect - > ( @ distance , $ paths [ - 1 ] [ - 1 ] , $ path - > points - > [ 0 ] )
2012-08-24 16:59:23 +00:00
&& $ expolygon_off - > encloses_line ( Slic3r::Line - > new ( $ paths [ - 1 ] [ - 1 ] , $ path - > points - > [ 0 ] ) , $ tolerance ) ) {
2011-12-04 15:24:46 +00:00
push @ { $ paths [ - 1 ] } , @ { $ path - > points } ;
next ;
}
}
2012-01-12 09:48:18 +00:00
push @ paths , $ path - > points ;
2011-12-04 15:24:46 +00:00
}
2011-09-25 18:09:30 +00:00
}
2011-10-06 11:43:32 +00:00
# paths must be rotated back
$ self - > rotate_points_back ( \ @ paths , $ rotate_vector ) ;
2011-12-17 18:52:34 +00:00
return { flow_spacing = > $ flow_spacing } , @ paths ;
2011-09-05 10:21:27 +00:00
}
1 ;