-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdessins_cible_visage.py
59 lines (51 loc) · 1.62 KB
/
dessins_cible_visage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
"""example from g. Swinnen"""
from tkinter import *
def cercle(x, y, r, coul='black'):
"""trace d'un cercle de centre (x,y) et de rayon r"""
can.create_oval(x - r, y - r, x + r, y + r, outline=coul)
def figure_1():
"""dessiner une cible"""
# Effacer d'abord tout dessin preexistant :
can.delete(ALL)
# tracer les deux lignes (vert. Et horiz.) :
can.create_line(100, 0, 100, 200, fill='blue')
can.create_line(0, 100, 200, 100, fill='blue')
# tracer plusieurs cercles concentriques :
rayon = 15
while rayon < 100:
cercle(100, 100, rayon)
rayon += 15
def figure_2():
"""dessiner un visage simplifie"""
# Effacer d'abord tout dessin preexistant :
can.delete(ALL)
# Les caracteristiques de chaque cercle sont
# placees dans une liste de listes :
cc = [[100, 100, 80, 'red'],
# visage
[70, 70, 15, 'blue'],
# yeux
[130, 70, 15, 'blue'],
[70, 70, 5, 'black'],
[130, 70, 5, 'black'],
[44, 115, 20, 'red'],
[156, 115, 20, 'red'],
[100, 95, 15, 'purple'],
[100, 145, 30, 'purple']]
# joues
# nez
# bouche
# on trace tous les cercles a l'aide d'une boucle :
i = 0
while i < len(cc):
el = cc[i]
cercle(el[0], el[1], el[2], el[3])
i += 1
fen = Tk()
can = Canvas(fen, width=200, height=200, bg='ivory')
can.pack(side=TOP, padx=5, pady=5)
b1 = Button(fen, text='dessin 1', command=figure_1)
b1.pack(side=LEFT, padx=3, pady=3)
b2 = Button(fen, text='dessin 2', command=figure_2)
b2.pack(side=RIGHT, padx=3, pady=3)
fen.mainloop()