From 443f4cc0ebc6cef1eb349fe6cbc7ee67f44c65e2 Mon Sep 17 00:00:00 2001 From: "Josh Warner (Mac)" Date: Mon, 7 Dec 2015 21:12:17 -0700 Subject: [PATCH] DOC: Correct docstring to correctly reflect defaults --- skimage/measure/_marching_cubes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skimage/measure/_marching_cubes.py b/skimage/measure/_marching_cubes.py index 55ffc05e..cd0e1b60 100644 --- a/skimage/measure/_marching_cubes.py +++ b/skimage/measure/_marching_cubes.py @@ -19,7 +19,7 @@ def marching_cubes(volume, level, spacing=(1., 1., 1.), indexing dimensions (M, N, P) as in `volume`. gradient_direction : string Controls if the mesh was generated from an isosurface with gradient - ascent toward objects of interest (the default), or the opposite. + descent toward objects of interest (the default), or the opposite. The two options are: * descent : Object was greater than exterior * ascent : Exterior was greater than object @@ -201,7 +201,7 @@ def correct_mesh_orientation(volume, verts, faces, spacing=(1., 1., 1.), indexing dimensions (M, N, P) as in `volume`. gradient_direction : string Controls if the mesh was generated from an isosurface with gradient - ascent toward objects of interest (the default), or the opposite. + descent toward objects of interest (the default), or the opposite. The two options are: * descent : Object was greater than exterior * ascent : Exterior was greater than object @@ -277,7 +277,7 @@ def _correct_mesh_orientation(volume, actual_verts, faces, indexing dimensions (M, N, P) as in `volume`. gradient_direction : string Controls if the mesh was generated from an isosurface with gradient - ascent toward objects of interest (the default), or the opposite. + descent toward objects of interest (the default), or the opposite. The two options are: * descent : Object was greater than exterior * ascent : Exterior was greater than object