mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 22:28:16 +01:00
43 lines
924 B
Markdown
43 lines
924 B
Markdown
# tri_delaunay_voronoi
|
|
|
|
A method of [`tri_delaunay`](lib3x-tri_delaunay.html). Returns voronoi cells from a delaunay object.
|
|
|
|
**Since:** 3.0
|
|
|
|
## Parameters
|
|
|
|
- `d` : A delaunay object.
|
|
|
|
## Examples
|
|
|
|
use <triangle/tri_delaunay.scad>;
|
|
use <triangle/tri_delaunay_indices.scad>;
|
|
use <triangle/tri_delaunay_shapes.scad>;
|
|
use <triangle/tri_delaunay_voronoi.scad>;
|
|
use <hull_polyline2d.scad>;
|
|
|
|
points = [for(i = [0:20]) rands(-100, 100, 2)];
|
|
|
|
delaunay = tri_delaunay(points, ret = "DELAUNAY");
|
|
|
|
tris = [for(ti = tri_delaunay_indices(delaunay)) [for(i = ti) points[i]]];
|
|
linear_extrude(1)
|
|
for(t = tris) {
|
|
polygon(t);
|
|
}
|
|
|
|
color("black")
|
|
linear_extrude(2)
|
|
for(t = tri_delaunay_shapes(delaunay)) {
|
|
offset(-1)
|
|
polygon(t);
|
|
}
|
|
|
|
color("red")
|
|
linear_extrude(3)
|
|
for(t = tri_delaunay_voronoi(delaunay)) {
|
|
hull_polyline2d(concat(t, [t[0]]), 2);
|
|
}
|
|
|
|
![tri_delaunay_voronoi](images/lib3x-tri_delaunay_voronoi-1.JPG)
|