mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-20 21:41:41 +02:00
move to pp
This commit is contained in:
@@ -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")
|
||||
|
@@ -3,13 +3,13 @@ use <polyline_join.scad>
|
||||
use <sweep.scad>
|
||||
use <fibonacci_lattice.scad>
|
||||
use <experimental/convex_centroid.scad>
|
||||
use <util/rands_sphere.scad>
|
||||
use <pp/pp_sphere.scad>
|
||||
|
||||
n = 60;
|
||||
radius = 5;
|
||||
|
||||
// pts = fibonacci_lattice(n, radius);
|
||||
pts = rands_sphere(radius, n);
|
||||
pts = pp_sphere(radius, n);
|
||||
|
||||
region_hollow = true;
|
||||
region_offset = 0.2;
|
||||
|
Reference in New Issue
Block a user