diff --git a/src/unittest.scad b/src/unittest.scad index c10f0d70..871a4530 100644 --- a/src/unittest.scad +++ b/src/unittest.scad @@ -33,7 +33,7 @@ function all_shift_to_int(points, digits) = [for(pt = points) shift_to_int(pt, digits) / digits]; module assertEqualPoint(expected, actual) { - n = 100000; + n = 10000; shifted_expected = shift_to_int( expected, n diff --git a/test/test_rounded_square.scad b/test/test_rounded_square.scad index ef804a63..462394b9 100644 --- a/test/test_rounded_square.scad +++ b/test/test_rounded_square.scad @@ -8,7 +8,7 @@ module test_rounded_square_size_corner() { module test_rounded_square(position, points) { assertEqualPoint([25, 25], position); assertEqualPoints( - [[20, -25], [21.9471, -24.6053], [23.5868, -23.4835], [24.6602, -21.8118], [25, -20], [25, 20], [24.6053, 21.9471], [23.4835, 23.5868], [21.8118, 24.6602], [20, 25], [-20, 25], [-21.8118, 24.6602], [-23.4835, 23.5868], [-24.6053, 21.9471], [-25, 20], [-25, -20], [-24.6602, -21.8118], [-23.5868, -23.4835], [-21.9471, -24.6053], [-20, -25]], + [[20, -25], [21.9471, -24.6053], [23.5868, -23.4835], [24.6602, -21.8118], [25, -20], [25, 20], [24.6053, 21.9471], [23.4835, 23.5868], [21.8118, 24.6602], [20, 25], [-20, 25], [-21.8118, 24.6602], [-23.4835, 23.5868], [-24.6053, 21.9471], [-25, 20], [-25, -20], [-24.6602, -21.8118], [-23.5868, -23.4835], [-21.9471, -24.6053], [-20, -25]], points ); } @@ -24,7 +24,7 @@ module test_rounded_square_size_corner_center() { module test_rounded_square(position, points) { assertEqualPoint([0, 0], position); assertEqualPoints( - [[20, -12.5], [21.9471, -12.1053], [23.5868, -10.9835], [24.6602, -9.31178], [25, -7.5], [25, 7.5], [24.6053, 9.44709], [23.4835, 11.0868], [21.8118, 12.1602], [20, 12.5], [-20, 12.5], [-21.8118, 12.1602], [-23.4835, 11.0868], [-24.6053, 9.44709], [-25, 7.5], [-25, -7.5], [-24.6602, -9.31178], [-23.5868, -10.9835], [-21.9471, -12.1053], [-20, -12.5]], + [[20, -12.5], [21.9471, -12.1053], [23.5868, -10.9835], [24.6602, -9.3118], [25, -7.5], [25, 7.5], [24.6053, 9.4471], [23.4835, 11.0868], [21.8118, 12.1602], [20, 12.5], [-20, 12.5], [-21.8118, 12.1602], [-23.4835, 11.0868], [-24.6053, 9.4471], [-25, 7.5], [-25, -7.5], [-24.6602, -9.3118], [-23.5868, -10.9835], [-21.9471, -12.1053], [-20, -12.5]], points ); } @@ -44,7 +44,7 @@ module test_rounded_square_size_corner_center_fn() { module test_rounded_square(position, points) { assertEqualPoint([0, 0], position); assertEqualPoints( - [[20, -12.5], [25, -7.5], [25, 7.5], [20, 12.5], [-20, 12.5], [-25, 7.5], [-25, -7.5], [-20, -12.5]], + [[20, -12.5], [25, -7.5], [25, 7.5], [20, 12.5], [-20, 12.5], [-25, 7.5], [-25, -7.5], [-20, -12.5]], points ); }