1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-16 03:34:42 +02:00

support different sides

This commit is contained in:
Justin Lin
2019-09-11 14:55:03 +08:00
parent 2760ba2b65
commit ae217d6426

View File

@@ -125,8 +125,13 @@ module floor_stand(width, height, thickness, joint_spacing) {
rotate(180) rotate(180)
decorate() decorate()
board_T(); board_T();
if($children == 1) {
children(); children();
rotate(180) rotate(180)
children(); children();
}
else {
children(0);
children(1);
}
} }