diff --git a/skimage/measure/_marching_cubes_lewiner.py b/skimage/measure/_marching_cubes_lewiner.py index 9df5134c..fb2aaed1 100644 --- a/skimage/measure/_marching_cubes_lewiner.py +++ b/skimage/measure/_marching_cubes_lewiner.py @@ -18,10 +18,10 @@ def marching_cubes_lewiner(volume, level=None, spacing=(1., 1., 1.), """ Lewiner marching cubes algorithm to find surfaces in 3d volumetric data - In contrast to ``marching_cubes()``, this algorithm resolves - ambiguities and guarantees topologically correct results. Therefore, - this algorithm generally a better choice, unless there is a specific - need for the classic algorithm. + In contrast to ``marching_cubes()``, this algorithm is faster, + resolves ambiguities, and guarantees topologically correct results. + Therefore, this algorithm generally a better choice, unless there + is a specific need for the classic algorithm. Parameters ----------