Skip to content

Commit

Permalink
bpo-14117: Make minor tweaks to turtledemo (GH-8002)
Browse files Browse the repository at this point in the history
The 'wikipedia' example is now 'rosette', describing what it draws.
The 'penrose' print output is reduced.  The 'tree' '1024'
output is eliminated.
  • Loading branch information
terryjreedy authored Jun 29, 2018
1 parent d904c23 commit 891a1f8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
3 changes: 0 additions & 3 deletions Lib/turtledemo/penrose.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,6 @@ def test(l=200, n=4, fun=sun, startpos=(0,0), th=2):
draw(l, n, th)
tracer(1)
c = clock()
print("Calculation: %7.4f s" % (b - a))
print("Drawing: %7.4f s" % (c - b))
print("Together: %7.4f s" % (c - a))
nk = len([x for x in tiledict if tiledict[x]])
nd = len([x for x in tiledict if not tiledict[x]])
print("%d kites and %d darts = %d pieces." % (nk, nd, nk+nd))
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion Lib/turtledemo/tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ def maketree():
t = tree([p], 200, 65, 0.6375)
for x in t:
pass
print(len(p.getscreen().turtles()))

def main():
a=clock()
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Make minor tweaks to turtledemo. The 'wikipedia' example is now 'rosette',
decribing what it draws. The 'penrose' print output is reduced. The'1024'
output of 'tree' is eliminated.

0 comments on commit 891a1f8

Please sign in to comment.