1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-01 02:33:00 +02:00

i can be ignored

This commit is contained in:
Justin Lin
2021-10-12 16:23:55 +08:00
parent c78fb13731
commit 1132451009

View File

@@ -1,3 +1,8 @@
module select(n) {
children(n);
module select(i) {
if(is_undef(i)) {
children();
}
else {
children(i);
}
}