1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/test/test_stereographic_extrude.scad

22 lines
543 B
OpenSCAD
Raw Normal View History

2017-06-26 14:16:59 +08:00
include <unittest.scad>;
module test_stereographic_extrude() {
echo("==== test_stereographic_extrude ====");
include <stereographic_extrude.scad>;
module test_stereographic_extrude_rs(outer_sphere_r, inner_sphere_r) {
assertEqualPoint([16.6667, 15.0756], [outer_sphere_r, inner_sphere_r]);
}
dimension = 100;
stereographic_extrude(shadow_side_leng = dimension)
text(
"M", size = dimension,
valign = "center", halign = "center"
);
}
test_stereographic_extrude();