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

add voronoi_melon

This commit is contained in:
Justin Lin
2022-01-20 17:06:39 +08:00
parent 86d0c65108
commit 7113cce683

View File

@@ -0,0 +1,56 @@
use <voronoi/vrn_sphere.scad>;
use <polyline_join.scad>;
use <experimental/rand_pts_sphere.scad>;
use <experimental/r_union3.scad>;
eyelets = 500;
radius = 5;
voronoi_melon(eyelets, radius);
module voronoi_melon(eyelets, radius) {
pts = rand_pts_sphere(radius, eyelets);
cells = vrn_sphere(pts);
color("DarkKhaki")
for(cell = cells) {
polyline_join(concat(cell, [cell[0]]))
sphere(radius / 60, $fn = 4);
}
color("Olive")
sphere(radius, $fn = 96);
color("DarkOliveGreen") {
r_union3(.6) {
scale(.99)
sphere(radius, $fn = 24);
translate([0, 0, radius * 0.875])
hull() {
$fn = 8;
sphere(radius / 15);
translate([0, 0, radius * .25])
sphere(radius / 20);
}
}
translate([0, 0, radius * 0.9]) {
$fn = 8;
hull() {
translate([radius / 2, 0, radius * .30])
sphere(radius / 40);
translate([0, 0, radius * .25])
sphere(radius / 20);
}
hull() {
translate([-radius / 4, radius / 10, radius * .35])
sphere(radius / 40);
translate([0, 0, radius * .25])
sphere(radius / 20);
}
}
}
}