GIF87a;
#! /usr/bin/env python # -*- coding: cp1252 -*- """ turtle-example-suite: tdemo_clock.py Enhanced clock-program, showing date and time ------------------------------------ Press STOP to exit the program! ------------------------------------ """ from turtle import * from datetime import datetime mode("logo") def jump(distanz, winkel=0): penup() right(winkel) forward(distanz) left(winkel) pendown() def hand(laenge, spitze): fd(laenge*1.15) rt(90) fd(spitze/2.0) lt(120) fd(spitze) lt(120) fd(spitze) lt(120) fd(spitze/2.0) def make_hand_shape(name, laenge, spitze): reset() jump(-laenge*0.15) begin_poly() hand(laenge, spitze) end_poly() hand_form = get_poly() register_shape(name, hand_form) def clockface(radius): reset() pensize(7) for i in range(60): jump(radius) if i % 5 == 0: fd(25) jump(-radius-25) else: dot(3) jump(-radius) rt(6) def setup(): global second_hand, minute_hand, hour_hand, writer mode("logo") make_hand_shape("second_hand", 125, 25) make_hand_shape("minute_hand", 130, 25) make_hand_shape("hour_hand", 90, 25) clockface(160) second_hand = Turtle() second_hand.shape("second_hand") second_hand.color("gray20", "gray80") minute_hand = Turtle() minute_hand.shape("minute_hand") minute_hand.color("blue1", "red1") hour_hand = Turtle() hour_hand.shape("hour_hand") hour_hand.color("blue3", "red3") for hand in second_hand, minute_hand, hour_hand: hand.resizemode("user") hand.shapesize(1, 1, 3) hand.speed(0) ht() writer = Turtle() #writer.mode("logo") writer.ht() writer.pu() writer.bk(85) def wochentag(t): wochentag = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"] return wochentag[t.weekday()] def datum(z): monat = ["Jan.", "Feb.", "Mar.", "Apr.", "May", "June", "July", "Aug.", "Sep.", "Oct.", "Nov.", "Dec."] j = z.year m = monat[z.month - 1] t = z.day return "%s %d %d" % (m, t, j) def tick(): t = datetime.today() sekunde = t.second + t.microsecond*0.000001 minute = t.minute + sekunde/60.0 stunde = t.hour + minute/60.0 tracer(False) writer.clear() writer.home() writer.forward(65) writer.write(wochentag(t), align="center", font=("Courier", 14, "bold")) writer.back(150) writer.write(datum(t), align="center", font=("Courier", 14, "bold")) writer.forward(85) tracer(True) second_hand.setheading(6*sekunde) minute_hand.setheading(6*minute) hour_hand.setheading(30*stunde) tracer(True) ontimer(tick, 100) def main(): tracer(False) setup() tracer(True) tick() return "EVENTLOOP" if __name__ == "__main__": msg = main() print msg mainloop()
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
about_turtle.txt | File | 3.44 KB | 0644 |
|
about_turtledemo.txt | File | 302 B | 0644 |
|
demohelp.txt | File | 2.38 KB | 0644 |
|
tdemo_I_dontlike_tiltdemo.py | File | 1.05 KB | 0644 |
|
tdemo_I_dontlike_tiltdemo.pyc | File | 1.62 KB | 0644 |
|
tdemo_I_dontlike_tiltdemo.pyo | File | 1.62 KB | 0644 |
|
tdemo_bytedesign.py | File | 4.12 KB | 0644 |
|
tdemo_bytedesign.pyc | File | 5.19 KB | 0644 |
|
tdemo_bytedesign.pyo | File | 5.19 KB | 0644 |
|
tdemo_chaos.py | File | 953 B | 0644 |
|
tdemo_chaos.pyc | File | 2.24 KB | 0644 |
|
tdemo_chaos.pyo | File | 2.24 KB | 0644 |
|
tdemo_clock.py | File | 2.95 KB | 0644 |
|
tdemo_clock.pyc | File | 4.38 KB | 0644 |
|
tdemo_clock.pyo | File | 4.38 KB | 0644 |
|
tdemo_colormixer.py | File | 1.31 KB | 0644 |
|
tdemo_colormixer.pyc | File | 2.31 KB | 0644 |
|
tdemo_colormixer.pyo | File | 2.31 KB | 0644 |
|
tdemo_fractalcurves.py | File | 3.33 KB | 0644 |
|
tdemo_fractalcurves.pyc | File | 3.44 KB | 0644 |
|
tdemo_fractalcurves.pyo | File | 3.44 KB | 0644 |
|
tdemo_lindenmayer_indian.py | File | 2.38 KB | 0644 |
|
tdemo_lindenmayer_indian.pyc | File | 3.52 KB | 0644 |
|
tdemo_lindenmayer_indian.pyo | File | 3.52 KB | 0644 |
|
tdemo_minimal_hanoi.py | File | 1.92 KB | 0644 |
|
tdemo_minimal_hanoi.pyc | File | 3.5 KB | 0644 |
|
tdemo_minimal_hanoi.pyo | File | 3.5 KB | 0644 |
|
tdemo_nim.py | File | 6.43 KB | 0644 |
|
tdemo_nim.pyc | File | 9.16 KB | 0644 |
|
tdemo_nim.pyo | File | 9.16 KB | 0644 |
|
tdemo_paint.py | File | 1.1 KB | 0644 |
|
tdemo_paint.pyc | File | 1.7 KB | 0644 |
|
tdemo_paint.pyo | File | 1.7 KB | 0644 |
|
tdemo_peace.py | File | 1.09 KB | 0644 |
|
tdemo_peace.pyc | File | 1.41 KB | 0644 |
|
tdemo_peace.pyo | File | 1.41 KB | 0644 |
|
tdemo_penrose.py | File | 3.45 KB | 0644 |
|
tdemo_penrose.pyc | File | 5.86 KB | 0644 |
|
tdemo_penrose.pyo | File | 5.86 KB | 0644 |
|
tdemo_planet_and_moon.py | File | 2.77 KB | 0644 |
|
tdemo_planet_and_moon.pyc | File | 4.44 KB | 0644 |
|
tdemo_planet_and_moon.pyo | File | 4.44 KB | 0644 |
|
tdemo_tree.py | File | 1.38 KB | 0644 |
|
tdemo_tree.pyc | File | 2.07 KB | 0644 |
|
tdemo_tree.pyo | File | 2.07 KB | 0644 |
|
tdemo_wikipedia.py | File | 1.32 KB | 0644 |
|
tdemo_wikipedia.pyc | File | 1.91 KB | 0644 |
|
tdemo_wikipedia.pyo | File | 1.91 KB | 0644 |
|
tdemo_yinyang.py | File | 808 B | 0644 |
|
tdemo_yinyang.pyc | File | 1.29 KB | 0644 |
|
tdemo_yinyang.pyo | File | 1.29 KB | 0644 |
|
turtle.cfg | File | 160 B | 0644 |
|
turtleDemo.py | File | 9.94 KB | 0644 |
|
turtleDemo.pyc | File | 9.97 KB | 0644 |
|
turtleDemo.pyo | File | 9.97 KB | 0644 |
|
turtledemo_two_canvases.py | File | 885 B | 0644 |
|
turtledemo_two_canvases.pyc | File | 1.22 KB | 0644 |
|
turtledemo_two_canvases.pyo | File | 1.22 KB | 0644 |
|