mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-03-14 11:10:01 +01:00
based on vertex normal
This commit is contained in:
parent
4510f43cc0
commit
05443666c3
@ -41,8 +41,9 @@ module sf_thickenT(points, thickness, triangles = undef, direction = "BOTH", con
|
||||
if(is_list(direction)) {
|
||||
dir_v = direction / norm(direction);
|
||||
mid = sorted(points)[leng_pts / 2];
|
||||
tri = cnn_tris[search([mid], points)[0]][0];
|
||||
nv = _face_normal([for(i = [2, 1, 0]) points[tri[i]]]); // OpenSCAD requires clockwise
|
||||
tris = cnn_tris[search([mid], points)[0]];
|
||||
nvs = [for(tri = tris) _face_normal([for(i = [2, 1, 0]) points[tri[i]]])]; // OpenSCAD requires clockwise
|
||||
nv = sum(nvs) / len(nvs);
|
||||
off = dir_v * thickness;
|
||||
pts = [for(p = points) p + off];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user