Skip to content

Commit

Permalink
add by_wavefront_exact to top-level
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Aug 6, 2024
1 parent 9b8a81c commit a804b04
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions skeletor/skeletonize/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
| function | speed | robust | radii [^2] | mesh map [^3] | description |
| ------------------------------------------- | :---: | :----: | :--------: | :-----------: | ---------------------------------------------------|
| `skeletor.skeletonize.by_wavefront()` | +++ | ++ | yes | yes | works well for tubular meshes |
| `skeletor.skeletonize.by_wavefront()` | ++++ | ++ | yes | yes | works well for tubular meshes |
| `skeletor.skeletonize.by_wavefront_exact()` | +++ | ++ | yes | no | works well for tubular meshes |
| `skeletor.skeletonize.by_vertex_clusters()` | ++ | + | no | yes | best with contracted meshes [^1] |
| `skeletor.skeletonize.by_teasar()` | + | ++ | no | yes | works on mesh surface |
| `skeletor.skeletonize.by_tangent_ball()` | ++ | 0 | yes | yes | works with mesh normals |
Expand All @@ -52,5 +53,5 @@
from .tangent_ball import *

__docformat__ = "numpy"
__all__ = ['by_teasar', 'by_wavefront','by_wavefront_exact', 'by_vertex_clusters',
__all__ = ['by_teasar', 'by_wavefront', 'by_wavefront_exact', 'by_vertex_clusters',
'by_edge_collapse', 'by_tangent_ball']

0 comments on commit a804b04

Please sign in to comment.