[Python-checkins] python/dist/src/Doc/lib libturtle.tex,1.4,1.4.8.1

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Thu, 20 Feb 2003 19:42:31 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv15142

Modified Files:
      Tag: release22-maint
	libturtle.tex 
Log Message:
SF bug #685775: turtle circle() documentation error



Index: libturtle.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libturtle.tex,v
retrieving revision 1.4
retrieving revision 1.4.8.1
diff -C2 -d -r1.4 -r1.4.8.1
*** libturtle.tex	15 Nov 2001 20:41:03 -0000	1.4
--- libturtle.tex	21 Feb 2003 03:42:28 -0000	1.4.8.1
***************
*** 96,102 ****
  
  \begin{funcdesc}{circle}{radius\optional{, extent}}
! Draw a circle with radius \var{radius} whose center-point is where the 
! pen would be if a \code{forward(\var{radius})} were
! called. \var{extent} determines which part of a circle is drawn: if
  not given it defaults to a full circle.
  
--- 96,102 ----
  
  \begin{funcdesc}{circle}{radius\optional{, extent}}
! Draw a circle with radius \var{radius} whose center-point is
! \var{radius} units left of the turtle.
! \var{extent} determines which part of a circle is drawn: if
  not given it defaults to a full circle.
  
***************
*** 104,108 ****
  current pen position. The arc is drawn in a counter clockwise
  direction if \var{radius} is positive, otherwise in a clockwise
! direction.
  \end{funcdesc}
  
--- 104,109 ----
  current pen position. The arc is drawn in a counter clockwise
  direction if \var{radius} is positive, otherwise in a clockwise
! direction.  In the process, the direction of the turtle is changed
! by the amount of the \var{extent}.
  \end{funcdesc}