mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-11 01:04:07 +02:00
fix wrong triangles
This commit is contained in:
@@ -56,10 +56,10 @@ module sf_thickenT(points, thickness, triangles = undef, direction = "BOTH") {
|
|||||||
pts = [for(p = points) p + dir_v * thickness];
|
pts = [for(p = points) p + dir_v * thickness];
|
||||||
|
|
||||||
if(nv * dir_v > 0) {
|
if(nv * dir_v > 0) {
|
||||||
sf_solidify_tri(pts, points, triangles);
|
sf_solidifyT(pts, points, real_triangles);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
sf_solidify_tri(points, pts, triangles);
|
sf_solidifyT(points, pts, real_triangles);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Reference in New Issue
Block a user