Remove trailing whitespace

This commit is contained in:
Chintak Sheth
2013-05-22 00:25:46 +05:30
parent 4ff28908d8
commit 1814cc44ca
+1 -1
View File
@@ -38,7 +38,7 @@ def convex_hull_image(image):
# Add a vertex for the middle of each pixel edge
coords_corners = np.empty((N * 4, 2))
for i, (x_offset, y_offset) in enumerate(zip((0, 0, -0.5, 0.5),
for i, (x_offset, y_offset) in enumerate(zip((0, 0, -0.5, 0.5),
(-0.5, 0.5, 0, 0))):
coords_corners[i * N:(i + 1) * N] = coords + [x_offset, y_offset]