1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-14 02:34:12 +02:00

update space_size

This commit is contained in:
Justin Lin
2019-06-05 09:20:01 +08:00
parent 840799f6cc
commit cc0e7499f9

View File

@@ -2,7 +2,7 @@ include <__private__/__angy_angz.scad>;
// slow but workable
module voronoi3d(points, spacing = 1, space_type = "cube") {
module voronoi3d(points, space_size = "auto", spacing = 1) {
xs = [for(p = points) p[0]];
ys = [for(p = points) abs(p[1])];
zs = [for(p = points) abs(p[2])];
@@ -21,12 +21,7 @@ module voronoi3d(points, spacing = 1, space_type = "cube") {
translate((pt + p) / 2 - normalize(v) * offset_leng)
rotate([0, -ryz[0], ryz[1]])
if(space_type == "cube") {
cube(space_size, center = true);
}
else if(space_type == "sphere") {
sphere(half_space_size);
}
cube([space_size, space_size * 2, space_size * 3], center = true);
}
}
}