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

19 lines
481 B
OpenSCAD
Raw Normal View History

module test_bend() {
include <unittest.scad>;
include <bend.scad>;
2017-06-19 17:51:28 +08:00
module test_bend_tri_frag(points, angle) {
echo("==== test_bend_tri_frag ====");
2017-06-19 17:51:28 +08:00
expected_points = [[0, 0], [0.1927, 1.9566], [0.3854, 0], [0, 0]];
expected_angle = 11.25;
assertEqualPoints(expected_points, points);
assertEqual(expected_angle, angle);
}
2017-06-22 15:10:25 +08:00
bend(size = [x, y, z], angle = 270)
linear_extrude(z) text("A");
2017-06-19 17:51:28 +08:00
}
test_bend();