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

33 lines
629 B
OpenSCAD

use <unittest.scad>;
include <line2d.scad>;
module test_line2d_cap(point, style) {
p1 = [0, 0];
p2 = [5, 0];
assert(
(point == p1 && style == "CAP_SQUARE") ||
(point == p2 && style == "CAP_SQUARE")
);
}
module test_line2d_line(angle, length, width, frags) {
assertEqualNum(0, angle);
assertEqualNum(5, length);
assertEqualNum(1, width);
assertEqualNum(24, frags);
}
module test_line2d() {
$fn = 24;
p1 = [0, 0];
p2 = [5, 0];
width = 1;
echo("==== test_line2d_cap_square ====");
line2d(p1 = p1, p2 = p2, width = width);
}
test_line2d();