From 967d39d1d6aaeed712dc4f99fc9c402b82a5d254 Mon Sep 17 00:00:00 2001 From: Audrey Roy Date: Mon, 23 Mar 2015 21:16:53 -0700 Subject: [PATCH] Improve reference docs for PIL.ImageDraw.Draw.pieslice() --- docs/reference/ImageDraw.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/reference/ImageDraw.rst b/docs/reference/ImageDraw.rst index c24a9dd99..e6d5c36ee 100644 --- a/docs/reference/ImageDraw.rst +++ b/docs/reference/ImageDraw.rst @@ -184,8 +184,11 @@ Methods :param xy: Four points to define the bounding box. Sequence of ``[(x0, y0), (x1, y1)]`` or ``[x0, y0, x1, y1]``. - :param outline: Color to use for the outline. + :param start: Starting angle, in degrees. Angles are measured from + 3 o'clock, increasing clockwise. + :param end: Ending angle, in degrees. :param fill: Color to use for the fill. + :param outline: Color to use for the outline. .. py:method:: PIL.ImageDraw.Draw.point(xy, fill=None)