From 6633ca9a7113f080bda1b40a8db962663115b917 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Thu, 22 Jan 2015 13:41:49 -0500 Subject: [PATCH] PEP8 --- skimage/draw/_draw.pyx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/skimage/draw/_draw.pyx b/skimage/draw/_draw.pyx index f7e6d368..649f69f2 100644 --- a/skimage/draw/_draw.pyx +++ b/skimage/draw/_draw.pyx @@ -19,8 +19,8 @@ def _coords_inside_image(rr, cc, shape, val=None): rr, cc : (N,) ndarray of int Indices of pixels. shape : tuple - Image shape which is used to determine the maximum extent of output pixel - coordinates. + Image shape which is used to determine the maximum extent of output + pixel coordinates. val : ndarray of float, optional Values of pixels at coordinates [rr, cc]. @@ -223,9 +223,9 @@ def polygon(y, x, shape=None): x : (N,) ndarray X-coordinates of vertices of polygon. shape : tuple, optional - Image shape which is used to determine the maximum extent of output pixel - coordinates. This is useful for polygons which exceed the image size. - By default the full extent of the polygon are used. + Image shape which is used to determine the maximum extent of output + pixel coordinates. This is useful for polygons which exceed the image + size. By default the full extent of the polygon are used. Returns ------- @@ -774,9 +774,9 @@ def bezier_curve(Py_ssize_t y0, Py_ssize_t x0, weight : double Middle control point weight, it describes the line tension. shape : tuple, optional - Image shape which is used to determine the maximum extent of output pixel - coordinates. This is useful for curves which exceed the image size. - By default the full extent of the curve are used. + Image shape which is used to determine the maximum extent of output + pixel coordinates. This is useful for curves which exceed the image + size. By default the full extent of the curve are used. Returns -------