mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-31 12:41:20 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			460 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			460 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| #!/usr/bin/perl
 | |
| 
 | |
| use strict;
 | |
| use warnings;
 | |
| 
 | |
| use Slic3r::XS;
 | |
| use Test::More tests => 3;
 | |
| 
 | |
| {
 | |
|     my @points = (
 | |
|         Slic3r::Point->new(100, 200),
 | |
|         Slic3r::Point->new(500, -600),
 | |
|     );
 | |
|     my $bb = Slic3r::Geometry::BoundingBox->new_from_points(\@points);
 | |
|     isa_ok $bb, 'Slic3r::Geometry::BoundingBox', 'new_from_points';
 | |
|     is_deeply $bb->min_point->pp, [100,-600], 'min_point';
 | |
|     is_deeply $bb->max_point->pp, [500,200], 'max_point';
 | |
| }
 | |
| 
 | |
| __END__
 | 
