Skip to content

Commit

Permalink
update user documentation bot
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Aug 13, 2023
1 parent a45538c commit 597b2c9
Show file tree
Hide file tree
Showing 33 changed files with 455 additions and 32 deletions.
Binary file modified docs/.doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/.doctrees/nodes/spatial/populate_solid.doctree
Binary file not shown.
Binary file modified docs/.doctrees/nodes/spatial/spatial_index.doctree
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_sources/nodes/spatial/populate_solid.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -231,5 +231,5 @@ Example of "Radius Field" mode usage:
* Generator-> :doc:`IcoSphere </nodes/generator/icosphere>`
* Fields-> :doc:`Scalar Field Formula </nodes/field/scalar_field_formula>`
* Solids-> :doc:`Cylinder (Solid) </nodes/solid/cylinder_solid>`
* Solids-> :doc:`Voronoi on Solid </nodes/spatial/voronoi_on_solid>`
* Solids-> :doc:`Voronoi on Solid </nodes/spatial/voronoi_on_solid_mk2>`
* Viz-> :doc:`Viewer Draw </nodes/viz/viewer_draw_mk4>`
133 changes: 133 additions & 0 deletions docs/_sources/nodes/spatial/voronoi_on_solid_mk2.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
Voronoi on Solid
================

.. image:: https://user-images.githubusercontent.com/14288520/202746548-02f2525f-f34b-44cf-9054-fd5ce9697ca6.png
:target: https://user-images.githubusercontent.com/14288520/202746548-02f2525f-f34b-44cf-9054-fd5ce9697ca6.png

Dependencies
------------

This node requires both SciPy_ and FreeCAD_ libraries to work.

.. _SciPy: https://scipy.org/
.. _FreeCAD: ../../solids.rst

Functionality
-------------

This node creates Voronoi diagram on a given Solid object. The result can be
output as either series of fragments of the shell of Solid object (series of
faces), or as a series of solid bodies.

**Note**: this node uses FreeCAD's functionality of solid boolean operations
internally. This functionality is known to be **slow** when working with objects
defined by NURBS surfaces, especially when there are a lot of sites used. Also
please be warned that this functionality is known to cause Blender crashes on
some setups.

.. image:: https://user-images.githubusercontent.com/14288520/202863312-ef965247-efac-4f98-9b62-127bc0a03f32.png
:target: https://user-images.githubusercontent.com/14288520/202863312-ef965247-efac-4f98-9b62-127bc0a03f32.png

Inputs
------

This node has the following inputs:

* **Solid**. The solid object, on which the Voronoi diagram is to be generated.
This input is mandatory.

.. image:: https://user-images.githubusercontent.com/14288520/202748963-647952f5-744d-4db6-b538-6b4c0f454d39.png
:target: https://user-images.githubusercontent.com/14288520/202748963-647952f5-744d-4db6-b538-6b4c0f454d39.png

* **Sites**. List of points, for which Voronoi diagram is to be generated. This
input is mandatory.

.. image:: https://user-images.githubusercontent.com/14288520/202750050-afdaeee2-0b86-4d41-af5f-d025cc5f467e.png
:target: https://user-images.githubusercontent.com/14288520/202750050-afdaeee2-0b86-4d41-af5f-d025cc5f467e.png

* **Inset**. Percentage of space to leave between generated Voronoi regions.
Zero means the object will be fully covered by generated regions. Maximum
value is 1.0. The default value is 0.1. This input can consume either a
single value per object, or a list of values per object - one value per site.
In the later case, each value will be used for corresponding cell.

.. image:: https://user-images.githubusercontent.com/14288520/202751076-960737db-e8e0-4d71-aed8-0f2773f0facb.png
:target: https://user-images.githubusercontent.com/14288520/202751076-960737db-e8e0-4d71-aed8-0f2773f0facb.png

.. image:: https://user-images.githubusercontent.com/14288520/202864166-e3317496-d617-496f-8dc7-8033a77c6578.png
:target: https://user-images.githubusercontent.com/14288520/202864166-e3317496-d617-496f-8dc7-8033a77c6578.png

* Spatial-> :doc:`Populate Solid </nodes/spatial/populate_solid>`
* Number-> :doc:`Number Range </nodes/number/number_range>`
* List->List Main-> :doc:`List Length </nodes/list_main/length>`
* List->List Struct-> :doc:`List Levels </nodes/list_struct/levels>`
* Viz-> :doc:`Viewer Draw </nodes/viz/viewer_draw_mk4>`
* Text-> :doc:`Stethoscope </nodes/text/stethoscope_v28>`

Parameters
----------

This node has the following parameters:

* **Mode**. The available options are available:

* **Surface**. The node will split the surface (shell) of the solid body into
regions of Voronoi diagram.
* **Volume**. The node will split the volume of the solid body into regions
of Voronoi diagram.

The default value is **Surface**.

.. image:: https://user-images.githubusercontent.com/14288520/202751663-1e7af390-77e7-42ff-844f-010403538b8f.png
:target: https://user-images.githubusercontent.com/14288520/202751663-1e7af390-77e7-42ff-844f-010403538b8f.png

* **Flat output**. If checked, output single flat list of fragments for all
output solids. Otherwise, output a separate list of fragments for each solid.
Checked by default.
* **Accuracy**. This parameter is available in the N panel only. Precision of
calculations (number of digits after decimal point). The default value is 6.

.. image:: https://user-images.githubusercontent.com/14288520/202752114-c940ad55-3e56-40dc-a55e-4f9b4992700e.png
:target: https://user-images.githubusercontent.com/14288520/202752114-c940ad55-3e56-40dc-a55e-4f9b4992700e.png

Outputs
-------

This node has the following outputs:

* **InnerSolid**. Solid objects (or their shells, if **Surface** mode is used)
calculated as regions of Voronoi diagram.
* **OuterSolid**. Solid object, representing the part of volume or shell, which
is left between the regions of Voronoi diagram. This object will be empty if
**Inset** input is set to zero.

Examples of usage
-----------------

Inner solids with **Surface** mode:

.. image:: https://user-images.githubusercontent.com/14288520/202754852-bfdbd502-ec68-4484-983c-de288e4c2dd6.png
:target: https://user-images.githubusercontent.com/14288520/202754852-bfdbd502-ec68-4484-983c-de288e4c2dd6.png

* Generator-> :doc:`NGon </nodes/generator/ngon>`
* Transform-> :doc:`Move </nodes/transforms/move_mk3>`
* Solids-> :doc:`Polygon Face (Solid) </nodes/solid/polygon_face>`
* Solids-> :doc:`Revolve Face (Solid) </nodes/solid/revolve_face>`
* Solids-> :doc:`Solid Viewer </nodes/solid/solid_viewer>`
* Spatial-> :doc:`Populate Solid </nodes/spatial/populate_solid>`
* Viz-> :doc:`Viewer Draw </nodes/viz/viewer_draw_mk4>`

Outer solid for the same setup:

.. image:: https://user-images.githubusercontent.com/14288520/202755395-edec16e0-042a-4f97-9c1a-f71a39d146dc.png
:target: https://user-images.githubusercontent.com/14288520/202755395-edec16e0-042a-4f97-9c1a-f71a39d146dc.png

Inner solids with **Volume** mode:

.. image:: https://user-images.githubusercontent.com/14288520/202755962-0c3a7391-330f-4d7c-9301-d7731368e37b.png
:target: https://user-images.githubusercontent.com/14288520/202755962-0c3a7391-330f-4d7c-9301-d7731368e37b.png

Outer solid with **Volume** mode:

.. image:: https://user-images.githubusercontent.com/14288520/202756392-4490fc0d-2b94-4890-bff7-0397e4186f8a.png
:target: https://user-images.githubusercontent.com/14288520/202756392-4490fc0d-2b94-4890-bff7-0397e4186f8a.png
2 changes: 1 addition & 1 deletion docs/nodes.html
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ <h1>Nodes<a class="headerlink" href="#nodes" title="Permalink to this heading">
<li class="toctree-l2"><a class="reference internal" href="nodes/spatial/voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l2"><a class="reference internal" href="nodes/spatial/voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l2"><a class="reference internal" href="nodes/spatial/voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l2"><a class="reference internal" href="nodes/spatial/voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l2"><a class="reference internal" href="nodes/spatial/voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l2"><a class="reference internal" href="nodes/spatial/voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l2"><a class="reference internal" href="nodes/spatial/voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/concave_hull.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/convex_hull_mk2.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/delaunay3d.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/delaunay_2d.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/delaunay_2d_cdt.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/field_random_probe.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/homogenous_vector_field.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/lloyd2d.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/lloyd3d.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/lloyd_on_mesh.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/lloyd_on_sphere.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/lloyd_solid.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/lloyd_solid_face.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions docs/nodes/spatial/populate_solid.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down Expand Up @@ -341,7 +341,7 @@ <h2>Example of Usage<a class="headerlink" href="#example-of-usage" title="Permal
<li><p>Generator-&gt; <a class="reference internal" href="../generator/icosphere.html"><span class="doc">IcoSphere</span></a></p></li>
<li><p>Fields-&gt; <a class="reference internal" href="../field/scalar_field_formula.html"><span class="doc">Scalar Field Formula</span></a></p></li>
<li><p>Solids-&gt; <a class="reference internal" href="../solid/cylinder_solid.html"><span class="doc">Cylinder (Solid)</span></a></p></li>
<li><p>Solids-&gt; <a class="reference internal" href="voronoi_on_solid.html"><span class="doc">Voronoi on Solid</span></a></p></li>
<li><p>Solids-&gt; <a class="reference internal" href="voronoi_on_solid_mk2.html"><span class="doc">Voronoi on Solid</span></a></p></li>
<li><p>Viz-&gt; <a class="reference internal" href="../viz/viewer_draw_mk4.html"><span class="doc">Viewer Draw</span></a></p></li>
</ul>
</section>
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/spatial/populate_surface.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<li class="toctree-l3"><a class="reference internal" href="voronoi3d.html">Voronoi 3D</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_2d.html">Voronoi 2D Node</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_mesh.html">Voronoi on Mesh</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_solid_mk2.html">Voronoi on Solid</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_on_surface.html">Voronoi on Surface</a></li>
<li class="toctree-l3"><a class="reference internal" href="voronoi_sphere.html">Voronoi Sphere</a></li>
</ul>
Expand Down
Loading

0 comments on commit 597b2c9

Please sign in to comment.