1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-01 04:20:27 +02:00

fix wrong triangles

This commit is contained in:
Justin Lin
2021-06-27 09:23:20 +08:00
parent 1d437f53b4
commit 67f3b36613

View File

@@ -56,10 +56,10 @@ module sf_thickenT(points, thickness, triangles = undef, direction = "BOTH") {
pts = [for(p = points) p + dir_v * thickness];
if(nv * dir_v > 0) {
sf_solidify_tri(pts, points, triangles);
sf_solidifyT(pts, points, real_triangles);
}
else {
sf_solidify_tri(points, pts, triangles);
sf_solidifyT(points, pts, real_triangles);
}
}
else {