mirror of
https://github.com/python/cpython.git
synced 2025-12-11 19:40:17 +00:00
Issue 7061: Explained 'gon'
This commit is contained in:
parent
9f62d1c5dd
commit
3cdfb12360
2 changed files with 9 additions and 2 deletions
|
|
@ -714,7 +714,10 @@ Settings for measurement
|
||||||
>>> turtle.left(90)
|
>>> turtle.left(90)
|
||||||
>>> turtle.heading()
|
>>> turtle.heading()
|
||||||
90.0
|
90.0
|
||||||
>>> turtle.degrees(400.0) # angle measurement in gon
|
|
||||||
|
Change angle measurement unit to grad (also known as gon,
|
||||||
|
grade, or gradian and equals 1/100-th of the right angle.)
|
||||||
|
>>> turtle.degrees(400.0)
|
||||||
>>> turtle.heading()
|
>>> turtle.heading()
|
||||||
100.0
|
100.0
|
||||||
>>> turtle.degrees(360)
|
>>> turtle.degrees(360)
|
||||||
|
|
@ -1511,6 +1514,7 @@ Window control
|
||||||
:param args: a color string or three numbers in the range 0..colormode or a
|
:param args: a color string or three numbers in the range 0..colormode or a
|
||||||
3-tuple of such numbers
|
3-tuple of such numbers
|
||||||
|
|
||||||
|
|
||||||
Set or return background color of the TurtleScreen.
|
Set or return background color of the TurtleScreen.
|
||||||
|
|
||||||
.. doctest::
|
.. doctest::
|
||||||
|
|
|
||||||
|
|
@ -1575,7 +1575,10 @@ class TNavigator(object):
|
||||||
>>> turtle.left(90)
|
>>> turtle.left(90)
|
||||||
>>> turtle.heading()
|
>>> turtle.heading()
|
||||||
90
|
90
|
||||||
>>> turtle.degrees(400.0) # angle measurement in gon
|
|
||||||
|
Change angle measurement unit to grad (also known as gon,
|
||||||
|
grade, or gradian and equals 1/100-th of the right angle.)
|
||||||
|
>>> turtle.degrees(400.0)
|
||||||
>>> turtle.heading()
|
>>> turtle.heading()
|
||||||
100
|
100
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue