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

add convex_center_p

This commit is contained in:
Justin Lin
2020-02-22 09:58:41 +08:00
parent 4026a206b6
commit 78fc088438

View File

@@ -0,0 +1,5 @@
use <experimental/_impl/_convex_center_p_impl.scad>;
function convex_center_p(points) =
let(leng = len(points))
_sum(points, leng) / leng;