1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/test/matrix/test_m_rotation.scad
2022-06-06 13:11:46 +08:00

21 lines
607 B
OpenSCAD

use <unittest.scad>
use <matrix/m_rotation.scad>
module test_m_rotation() {
echo("==== test_m_rotation ====");
a = [0, -45, 45];
expected = [[0.5, -0.707107, -0.5, 0], [0.5, 0.707107, -0.5, 0], [0.707107, 0, 0.707107, 0], [0, 0, 0, 1]];
actual = m_rotation(a);
assertEqualPoints(expected, actual, 0.0005);
v = [10, 10, 10];
expected2 = [[0.804738, -0.310617, 0.505879, 0], [0.505879, 0.804738, -0.310617, 0], [-0.310617, 0.505879, 0.804738, 0], [0, 0, 0, 1]];
actual2 = m_rotation(a = 45, v = v);
assertEqualPoints(expected2, actual2, 0.0005);
}
test_m_rotation();