1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 22:28:16 +01:00
dotSCAD/test/test_hull_polyline2d.scad
2020-01-28 09:44:36 +08:00

26 lines
642 B
OpenSCAD

use <unittest.scad>;
include <hull_polyline2d.scad>;
module test_hull_polyline2d_line_segment(index, point1, point2, radius) {
points = [[1, 2], [-5, -4], [-5, 3], [5, 5]];
line_width = 1;
assertEqualPoint(points[index - 1], point1);
assertEqualPoint(points[index], point2);
assertEqualNum(line_width, radius * 2);
}
module test_hull_polyline2d() {
echo("==== test_hull_polyline2d ====");
$fn = 4;
points = [[1, 2], [-5, -4], [-5, 3], [5, 5]];
line_width = 1;
hull_polyline2d(
points = [[1, 2], [-5, -4], [-5, 3], [5, 5]],
width = 1
);
}
test_hull_polyline2d();