mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 20:51:23 -07:00 
			
		
		
		
	Bugfix: some infill paths were not connected. #477
This commit is contained in:
		
							parent
							
								
									ac08cf7469
								
							
						
					
					
						commit
						53d24bc580
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -67,13 +67,13 @@ sub fill_surface {
 | 
			
		|||
        my $can_connect = $is_line_pattern
 | 
			
		||||
            ? sub {
 | 
			
		||||
                ($_[X] >= ($distance_between_lines - $line_oscillation) - $tolerance) && ($_[X] <= ($distance_between_lines + $line_oscillation) + $tolerance)
 | 
			
		||||
                    && abs($_[Y]) <= $diagonal_distance
 | 
			
		||||
                    && $_[Y] <= $diagonal_distance
 | 
			
		||||
            }
 | 
			
		||||
            : sub { abs($_[X] - $distance_between_lines) <= $tolerance && abs($_[Y]) <= $diagonal_distance };
 | 
			
		||||
            : sub { abs($_[X]) - $distance_between_lines <= $tolerance && $_[Y] <= $diagonal_distance };
 | 
			
		||||
        
 | 
			
		||||
        foreach my $path ($collection->shortest_path) {
 | 
			
		||||
            if (@paths) {
 | 
			
		||||
                my @distance = map +($path->points->[0][$_] - $paths[-1][-1][$_]), (X,Y);
 | 
			
		||||
                my @distance = map abs($path->points->[0][$_] - $paths[-1][-1][$_]), (X,Y);
 | 
			
		||||
                
 | 
			
		||||
                # TODO: we should also check that both points are on a fill_boundary to avoid 
 | 
			
		||||
                # connecting paths on the boundaries of internal regions
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue