From 8faf1489556649728be1a58fe2c38eef373e18ae Mon Sep 17 00:00:00 2001 From: James Bergstra Date: Wed, 22 Aug 2012 09:08:14 -0400 Subject: [PATCH] FIX: wordwrap to 78 --- skimage/transform/_geometric.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/skimage/transform/_geometric.py b/skimage/transform/_geometric.py index d29baac0..ce2eb7b6 100644 --- a/skimage/transform/_geometric.py +++ b/skimage/transform/_geometric.py @@ -724,12 +724,14 @@ def warp_coords(orows, ocols, bands, coord_transform_fn, Notes ----- - This is a lower-level routine that produces the source coordinates used by `warp()`. + This is a lower-level routine that produces the source coordinates used by + `warp()`. - It is provided separately from `warp` to give additional flexibility to users who would - like, for example, to re-use a particular coordinate mapping, to use specific dtypes at - various points along the the image-warping process, or to implement different - post-processing logic than `warp` performs after the call to `ndimage.map_coordinates`. + It is provided separately from `warp` to give additional flexibility to + users who would like, for example, to re-use a particular coordinate + mapping, to use specific dtypes at various points along the the + image-warping process, or to implement different post-processing logic + than `warp` performs after the call to `ndimage.map_coordinates`. Examples