1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-22 14:23:23 +02:00

reduce deps

This commit is contained in:
Justin Lin
2020-01-27 09:11:38 +08:00
parent e1ec2ac66a
commit bb4d83fa01
2 changed files with 21 additions and 27 deletions

View File

@@ -151,7 +151,7 @@ module path_extrude(shape_pts, path_pts, triangles = "SOLID", twist = 0, scale =
);
// hook for testing
test_path_extrude(sections);
test_path_extrude(sections, method);
}
module euler_angle_path_extrude() {
@@ -198,7 +198,7 @@ module path_extrude(shape_pts, path_pts, triangles = "SOLID", twist = 0, scale =
);
// hook for testing
test_path_extrude(calculated_sections);
test_path_extrude(calculated_sections, method);
}
if(method == "AXIS_ANGLE") {
@@ -210,6 +210,6 @@ module path_extrude(shape_pts, path_pts, triangles = "SOLID", twist = 0, scale =
}
// override to test
module test_path_extrude(sections) {
module test_path_extrude(sections, method) {
}

File diff suppressed because one or more lines are too long