Merge pull request #2102 from sciunto/docfix

DOC: add space before column on variable def (minor...)
This commit is contained in:
Juan Nunez-Iglesias
2016-05-23 11:38:35 +10:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -313,7 +313,7 @@ def circle_perimeter(Py_ssize_t cy, Py_ssize_t cx, Py_ssize_t radius,
----------
cy, cx : int
Centre coordinate of circle.
radius: int
radius : int
Radius of circle.
method : {'bresenham', 'andres'}, optional
bresenham : Bresenham method (default)
@@ -424,7 +424,7 @@ def circle_perimeter_aa(Py_ssize_t cy, Py_ssize_t cx, Py_ssize_t radius,
----------
cy, cx : int
Centre coordinate of circle.
radius: int
radius : int
Radius of circle.
shape : tuple, optional
Image shape which is used to determine the maximum extent of output pixel
+1 -1
View File
@@ -88,7 +88,7 @@ def circle(r, c, radius, shape=None):
----------
r, c : double
Centre coordinate of circle.
radius: double
radius : double
Radius of circle.
shape : tuple, optional
Image shape which is used to determine the maximum extent of output pixel