1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-12 17:54:18 +02:00

add comment

This commit is contained in:
Justin Lin
2020-05-24 16:11:45 +08:00
parent 936ec3ecb6
commit 3409d714a1

View File

@@ -1,3 +1,13 @@
/**
* sum.scad
*
* @copyright Justin Lin, 2020
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib2x-sum.html
*
**/
use <_impl/_sum_impl.scad>;
function sum(lt) = _sum_impl(lt, len(lt));