Skip to content

Commit 5cdb5d5

Browse files
authored
Update README.md
1 parent 5c978c2 commit 5cdb5d5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ This is a collection of simple to more involved examples to scripting in [Blende
1515
- [Phyllotaxis Flower](#phyllotaxis-flower)
1616
- [Rugged Donut](#rugged-donut)
1717
- [Fisher Iris Visualization](#fisher-iris-visualization)
18+
- [Voronoi Sphere](#voronoi-sphere)
1819

1920

2021
## Requirements
@@ -272,3 +273,13 @@ X = PCA(X, 3)[0]
272273
The data set is loaded into the scene as a 3D scatter plot with different shape primitives for each class of flower from the [BMesh Operators](https://docs.blender.org/api/blender_python_api_current/bmesh.ops.html). Additionally each collection of shapes in a class has different materials assigned to them. Each class has corresponding labels which are rotated toward the camera by a [Locked Track Constraint](https://docs.blender.org/manual/en/dev/rigging/constraints/tracking/locked_track.html).
273274

274275
![Fisher Iris Visualization](/img/fisher_iris_visualization.gif)
276+
277+
278+
279+
## Voronoi Sphere
280+
281+
[voronoi_sphere.py](scripts/voronoi_sphere.py)
282+
283+
This is another example using the [Voronoi diagram](https://en.wikipedia.org/wiki/Voronoi_diagram), but this time in the 3rd dimension. It is implemented as well with the module `scipy.spatial` which can be added with [Scipy](https://www.scipy.org/) and it is even used in a similar way as the previous Voronoi example in 2D.
284+
285+
![Voronoi Sphere](/img/voronoi_sphere.png)

0 commit comments

Comments
 (0)