1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-30 09:49:59 +02:00

add voronoi3d

This commit is contained in:
Justin Lin
2019-05-25 16:10:48 +08:00
parent 944152d326
commit de31131741

32
src/voronoi3d.scad Normal file
View File

@@ -0,0 +1,32 @@
include <__private__/__angy_angz.scad>;
// slow but workable
module voronoi3d(points, spacing = 1) {
xs = [for(p = points) p[0]];
ys = [for(p = points) abs(p[1])];
zs = [for(p = points) abs(p[2])];
space_size = max([(max(xs) - min(xs) / 2), (max(ys) - min(ys)) / 2, (max(zs) - min(zs)) / 2]);
half_space_size = 0.5 * space_size;
offset_leng = spacing * 0.5 + half_space_size;
function normalize(v) = v / norm(v);
module space(pt) {
intersection_for(p = points) {
if(pt != p) {
v = p - pt;
ryz = __angy_angz(p, pt);
translate((pt + p) / 2 - normalize(v) * offset_leng)
rotate([0, -ryz[0], ryz[1]])
cube(space_size, center = true);
}
}
}
for(p = points) {
space(p);
}
}