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

12 lines
335 B
OpenSCAD

use <util/spherical_coordinate.scad>
module test_spherical_coordinate() {
echo("==== test_spherical_coordinate ====");
coord = spherical_coordinate([100, 100, 100]);
r = round(coord[0]);
theta = round(coord[1]);
phi = round(coord[2]);
assert([r, theta, phi] == [173, 45, 55]);
}
test_spherical_coordinate();