1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-24 21:41:33 +02:00
Files
dotSCAD/src/select.scad
2021-10-18 16:01:53 +08:00

18 lines
285 B
OpenSCAD

/**
* select.scad
*
* @copyright Justin Lin, 2021
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-select.html
*
**/
module select(i) {
if(is_undef(i)) {
children();
}
else {
children(i);
}
}