1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 22:28:16 +01:00

refactor deps

This commit is contained in:
Justin Lin 2020-01-27 15:28:39 +08:00
parent 4a125077a6
commit 440e5ec6a7
2 changed files with 4 additions and 48 deletions

View File

@ -8,6 +8,8 @@
*
**/
use <line2d.scad>;
module polyline2d(points, width, startingStyle = "CAP_SQUARE", endingStyle = "CAP_SQUARE") {
leng_pts = len(points);

View File

@ -1,5 +1,5 @@
include <unittest.scad>;
include <line2d.scad>;
use <unittest.scad>;
use <polyline2d.scad>;
module test_polyline2d() {
@ -54,8 +54,6 @@ module test_polyline2d() {
module test_polyline2d_cap_square() {
echo("==== test_polyline2d_cap_square ====");
include <polyline2d.scad>;
module test_polyline2d_line_segment(index, point1, point2, width, p1Style, p2Style) {
@ -68,53 +66,9 @@ module test_polyline2d() {
polyline2d(points = points, width = line_width);
}
module test_polyline2d_cap_end_round() {
echo("==== test_polyline2d_cap_end_round ====");
include <polyline2d.scad>;
module test_polyline2d_line_segment(index, point1, point2, width, p1Style, p2Style) {
assertCorrectSegment(index, point1, point2, width);
assertCorrectCaps(
"CAP_SQUARE", "CAP_ROUND",
index, p1Style, p2Style
);
}
polyline2d(
points = points,
width = line_width,
endingStyle = "CAP_ROUND"
);
}
module test_polyline2d_cap_round() {
echo("==== test_polyline2d_cap_round ====");
include <polyline2d.scad>;
module test_polyline2d_line_segment(index, point1, point2, width, p1Style, p2Style) {
assertCorrectSegment(index, point1, point2, width);
assertCorrectCaps(
"CAP_ROUND", "CAP_ROUND",
index, p1Style, p2Style
);
}
polyline2d(
points = points,
width = line_width,
startingStyle = "CAP_ROUND",
endingStyle = "CAP_ROUND"
);
}
test_polyline2d_cap_square();
test_polyline2d_cap_end_round();
test_polyline2d_cap_round();
}
test_polyline2d();