mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 20:51:23 -07:00 
			
		
		
		
	Remove grep that is effectively repeated.
This commit is contained in:
		
							parent
							
								
									ea83c562c1
								
							
						
					
					
						commit
						2689f49ef8
					
				
					 1 changed files with 4 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -127,9 +127,10 @@ sub clean {
 | 
			
		|||
sub check_manifoldness {
 | 
			
		||||
    my $self = shift;
 | 
			
		||||
    
 | 
			
		||||
    # look for edges not connected to exactly two facets
 | 
			
		||||
    if (grep { @$_ != 2 } @{$self->edges_facets}) {
 | 
			
		||||
        my ($first_bad_edge_id) = grep { @{ $self->edges_facets->[$_] } != 2 } 0..$#{$self->edges_facets};
 | 
			
		||||
    # look for any edges not connected to exactly two facets
 | 
			
		||||
    my ($first_bad_edge_id) =
 | 
			
		||||
        grep { @{ $self->edges_facets->[$_] } != 2 } 0..$#{$self->edges_facets};
 | 
			
		||||
    if (defined $first_bad_edge_id) {
 | 
			
		||||
        warn sprintf "Warning: The input file is not manifold near edge %f-%f. "
 | 
			
		||||
            . "You might want to check the resulting G-code before printing.\n",
 | 
			
		||||
            @{$self->edges->[$first_bad_edge_id]};
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue