Capitalize parameter description

This commit is contained in:
Johannes Schönberger
2013-05-27 21:00:59 +02:00
parent 559b0a0562
commit 4cf6edc756
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ 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 maximum extents of output pixel
Image shape which is used to determine maximum extents of output pixel
coordinates. This is useful for polygons which exceed the image size.
By default the full extents of the polygon are used.
+2 -2
View File
@@ -17,7 +17,7 @@ def ellipse(cy, cx, yradius, xradius, shape=None):
yradius, xradius : double
Minor and major semi-axes. ``(x/xradius)**2 + (y/yradius)**2 = 1``.
shape : tuple, optional
image shape which is used to determine maximum extents of output pixel
Image shape which is used to determine maximum extents of output pixel
coordinates. This is useful for ellipses which exceed the image size.
By default the full extents of the ellipse are used.
@@ -57,7 +57,7 @@ def circle(cy, cx, radius, shape=None):
radius: double
Radius of circle.
shape : tuple, optional
image shape which is used to determine maximum extents of output pixel
Image shape which is used to determine maximum extents of output pixel
coordinates. This is useful for circles which exceed the image size.
By default the full extents of the circle are used.