1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-11 09:14:29 +02:00

add comments

This commit is contained in:
Justin Lin
2021-10-18 16:01:53 +08:00
parent 6bda39ecef
commit 43b22a0f4c
2 changed files with 20 additions and 0 deletions

View File

@@ -1,3 +1,13 @@
/**
* polyline_join.scad
*
* @copyright Justin Lin, 2021
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-polyline_join.html
*
**/
module polyline_join(points) {
leng = len(points);

View File

@@ -1,3 +1,13 @@
/**
* 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();