From e47392af97f8765cb330028cf172b8c275c7eacb Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Fri, 22 Jul 2016 00:53:20 +0200 Subject: [PATCH] MC: docs --- skimage/measure/_marching_cubes_lewiner.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 ----------