Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2011-12-03 21:31:31 +0400
committerAlessandro Ranellucci <aar@cpan.org>2011-12-03 21:31:31 +0400
commit4fe340cc56498644776449d816d5196e7e1a17d9 (patch)
tree83029e731fa1feb9ebc06880a748994fc5c1b42a /t/angles.t
parent792960aae1dbc5bd54a1ec5f80697c0505a65fe3 (diff)
Many fixes to the bridge direction detection algorithm and other things. #58
Diffstat (limited to 't/angles.t')
-rw-r--r--t/angles.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/angles.t b/t/angles.t
index 551c0a4c2..0caac718d 100644
--- a/t/angles.t
+++ b/t/angles.t
@@ -2,7 +2,7 @@ use Test::More;
use strict;
use warnings;
-plan tests => 23;
+plan tests => 24;
BEGIN {
use FindBin;
@@ -50,6 +50,7 @@ use Slic3r::Geometry qw(line_atan line_direction rad2deg_dir PI);
is rad2deg_dir(PI*1/4), 45, 'NE (degrees)';
is rad2deg_dir(PI*3/4), 135, 'NW (degrees)';
is rad2deg_dir(PI/6), 60, '30°';
+ is rad2deg_dir(PI/6*2), 30, '60°';
}
#==========================================================