From 4565712869ef4269d62de593a245ca8d001c4ea9 Mon Sep 17 00:00:00 2001 From: jaseg Date: Thu, 7 Oct 2021 11:13:12 +0200 Subject: WIP --- gerbonara/gerber/tests/panelize/test_utility.py | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'gerbonara/gerber/tests/panelize/test_utility.py') diff --git a/gerbonara/gerber/tests/panelize/test_utility.py b/gerbonara/gerber/tests/panelize/test_utility.py index b32af8b..f632d90 100644 --- a/gerbonara/gerber/tests/panelize/test_utility.py +++ b/gerbonara/gerber/tests/panelize/test_utility.py @@ -9,21 +9,6 @@ from ...panelize.utility import * from math import sqrt class TestUtility(unittest.TestCase): - def test_rotate(self): - x0, y0 = (10, 0) - - x1, y1 = rotate(x0, y0, 60, (0, 0)) - self.assertAlmostEqual(x1, 5) - self.assertAlmostEqual(y1, 10 * sqrt(3) / 2) - - x1, y1 = rotate(x0, y0, 180, (5, 0)) - self.assertAlmostEqual(x1, 0) - self.assertAlmostEqual(y1, 0) - - x1, y1 = rotate(x0, y0, -90, (10, 5)) - self.assertAlmostEqual(x1, 5) - self.assertAlmostEqual(y1, 5) - def test_is_equal_value(self): a = 10.0001 b = 10.01 -- cgit