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

removed unnecessary modules

This commit is contained in:
Justin Lin
2017-05-10 17:00:19 +08:00
parent b0a1b93b0f
commit 8c8e83b657
2 changed files with 0 additions and 13 deletions

View File

@@ -1 +0,0 @@
function __triangles_radial(shape_pts) = [for(i = [1:len(shape_pts) - 2]) [0, i, i + 1]];

View File

@@ -1,12 +0,0 @@
function __triangles_tape(shape_pts) =
let(leng = len(shape_pts))
concat(
[
for(i = [0:leng / 2 - 2])
[i, leng - i - 1, leng - i - 2]
],
[
for(i = [0:leng / 2 - 2])
[i, i + 1, leng - i - 2]
]
);