Skip to content

Commit 05e8a22

Browse files
committed
Py: Documentation fixes
1 parent 6ad0b1f commit 05e8a22

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

pysplashsurf/pysplashsurf/docs/source/api.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ Functions
2323
neighborhood_search_spatial_hashing_parallel
2424
reconstruct_surface
2525
reconstruction_pipeline
26-
triangulate_density_map
2726

2827
Classes
2928
-------

pysplashsurf/pysplashsurf/docs/source/classes.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ Helper and return types
3636

3737
See `Aabb3d <https://docs.rs/splashsurf_lib/latest/splashsurf_lib/type.Aabb3d.html>`_ for more information.
3838

39+
.. autoclass:: MeshType
40+
:members:
41+
3942
.. autoclass:: NeighborhoodLists
4043
:members:
4144

pysplashsurf/pysplashsurf/docs/source/functions.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,3 @@ All functions infer float precision based on the input (``np.float32`` or ``np.f
2222
.. autofunction:: reconstruct_surface
2323

2424
.. autofunction:: reconstruction_pipeline
25-
26-
.. autofunction:: triangulate_density_map

pysplashsurf/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ fn pysplashsurf(m: &Bound<'_, PyModule>) -> PyResult<()> {
3232
m.add_class::<mesh::PyMeshWithData>()?;
3333
m.add_class::<mesh::PyVertexVertexConnectivity>()?;
3434
m.add_class::<mesh::PyMeshAttribute>()?;
35+
m.add_class::<mesh::MeshType>()?;
3536

3637
m.add_class::<aabb::PyAabb3d>()?;
3738
m.add_class::<neighborhood_search::PyNeighborhoodLists>()?;

0 commit comments

Comments
 (0)