mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-09-24 21:41:33 +02:00
18 lines
285 B
OpenSCAD
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);
|
|
}
|
|
} |