1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-01 10:42:57 +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) { module select(i) {
children(n); if(is_undef(i)) {
children();
}
else {
children(i);
}
} }