1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-27 16:30:29 +02:00

move to pp

This commit is contained in:
Justin Lin
2022-06-19 11:47:54 +08:00
parent 2651a23524
commit 938507d02d
10 changed files with 28 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
use <voronoi/vrn_sphere.scad>
use <polyline_join.scad>
use <util/rands_sphere.scad>
use <pp/pp_sphere.scad>
use <experimental/r_union3.scad>
eyelets = 800;
@@ -9,7 +9,7 @@ radius = 50;
voronoi_melon(eyelets, radius);
module voronoi_melon(eyelets, radius) {
pts = rands_sphere(radius, eyelets);
pts = pp_sphere(radius, eyelets);
cells = vrn_sphere(pts);
color("DarkKhaki")