From 0f36316dd44e4cc1ef66e808bd0888a8e677ab5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Wed, 16 Jan 2013 17:18:12 +0100 Subject: [PATCH] Add empty lines between functions --- skimage/draw/_draw.pyx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skimage/draw/_draw.pyx b/skimage/draw/_draw.pyx index 29771b28..033de8f0 100644 --- a/skimage/draw/_draw.pyx +++ b/skimage/draw/_draw.pyx @@ -265,6 +265,7 @@ def circle_perimeter(int cy, int cx, int radius, method='bresenham'): return np.array(rr) + cy, np.array(cc) + cx + def ellipse_perimeter(int cy, int cx, int yradius, int xradius): """Generate ellipse perimeter coordinates. @@ -350,6 +351,7 @@ def ellipse_perimeter(int cy, int cx, int yradius, int xradius): return np.array(py) + cy, np.array(px) + cx + def set_color(img, coords, color): """Set pixel color in the image at the given coordinates. Coordinates that exceed the shape of the image will be ignored.