1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-29 11:58:39 +01:00

remove param

This commit is contained in:
Justin Lin 2019-09-11 09:55:44 +08:00
parent e83ac7489a
commit 3ae965216b
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
module floor_stand(width, height, thickness, joint_spacing, line_spacing) {
module floor_stand(width, height, thickness, joint_spacing) {
half_w = width / 2;
half_h = height / 2;
half_th = thickness / 2;

View File

@ -71,5 +71,5 @@ module content(text, font, font_size, symbol_png, symbol_unicode, symbol_font, s
}
}
floor_stand(stand_width, stand_height, stand_thickness, joint_spacing, line_spacing)
floor_stand(stand_width, stand_height, stand_thickness, joint_spacing)
content(text, font, font_size, symbol_png, symbol_unicode, symbol_font, symbol_font_size, stand_height, stand_thickness, line_spacing);

View File

@ -31,5 +31,5 @@ module words(text, font, font_size, height, thickness, line_spacing) {
}
}
floor_stand(stand_width, stand_height, stand_thickness, joint_spacing, line_spacing)
floor_stand(stand_width, stand_height, stand_thickness, joint_spacing)
words(text, font, font_size, stand_height, stand_thickness, line_spacing);