From 7ab33ba03ce278573cc7ce710e780103f9c2302f Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Thu, 10 Mar 2022 20:13:06 +0800 Subject: [PATCH] del --- test/matrix/test_m_cumulate.scad | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 test/matrix/test_m_cumulate.scad diff --git a/test/matrix/test_m_cumulate.scad b/test/matrix/test_m_cumulate.scad deleted file mode 100644 index e03d792a..00000000 --- a/test/matrix/test_m_cumulate.scad +++ /dev/null @@ -1,18 +0,0 @@ -use ; -use ; -use ; -use ; -use ; - -module test_m_cumulate() { - echo("==== test_m_cumulate ===="); - - expected = [[1, -1.73205, 0, 10], [1.73205, 1, 0, 20], [0, 0, 2, 10], [0, 0, 0, 1]]; - actual = m_cumulate([ - m_translation([10, 20, 10]), m_scaling(2), m_rotation(60)] - ); - - assertEqualPoints(expected, actual); -} - -test_m_cumulate(); \ No newline at end of file