2 Commits

Author SHA1 Message Date
023ca072a8 Обновить hare.py 2026-03-18 15:11:47 +03:00
c5a26266a8 Обновить hare.py 2026-03-18 14:26:44 +03:00

39
hare.py
View File

@@ -24,40 +24,13 @@ def draw_ear(surface, x, y, width, height, color):
def draw_leg(surface, x, y, width, height, color): def draw_leg(surface, x, y, width, height, color):
ellipse(surface, color, (x - width // 2, y - height // 2, width, height)) ellipse(surface, color, (x - width // 2, y - height // 2, width, height))
# ЭТА ФУНКЦИЯ СДЕЛАНА ПЛОХО
def draw_hare(surface, x, y, width, height, color): def draw_hare(surface, x, y, width, height, color):
# Тело draw_body(surface, x, y + height // 4, width // 2, height // 2, color)
w1 = width // 2 draw_ear(surface, x - height // 16, y - height // 2 + height // 6, width // 8, height // 3, color)
h1 = height // 2 draw_ear(surface, x + height // 16, y - height // 2 + height // 6, width // 8, height // 3, color)
y1 = y + h1 // 2 draw_head(surface, x, y - height // 8, height // 4, color)
ellipse(surface, color, (x - w1 // 2, y1 - h1 // 2, w1, h1)) draw_leg(surface, x - width // 4, y + height // 2 - height // 32, width // 4, height // 16, color)
draw_leg(surface, x + width // 4, y + height // 2 - height // 32, width // 4, height // 16, color)
# Голова
s2 = height // 4
y2 = y - s2 // 2
circle(surface, color, (x, y2), s2 // 2)
# левое ухо
eh = height // 3
ey = y - height // 2 + eh // 2
ew = width // 8
ellipse(surface, color, (x - s2 // 4 - ew // 2, ey - eh // 2, ew, eh))
# правое ухо
ellipse(surface, color, (x + s2 // 4 - ew // 2, ey - eh // 2, ew, eh))
# Ноги - СТРАННЫЕ ПЕРЕМЕННЫЕ
lh = height // 16
ly = y + height // 2 - lh // 2
lw = width // 4
# левая нога
ellipse(surface, color, (x - width // 4 - lw // 2, ly - lh // 2, lw, lh))
# правая нога
ellipse(surface, color, (x + width // 4 - lw // 2, ly - lh // 2, lw, lh))
# НИ НА ЧТО НЕ ВЛИЯЮЩИЙ КОД
temp = 0
for i in range(5):
temp += i
# Рисуем зайца # Рисуем зайца
draw_hare(screen, 200, 200, 200, 300, GRAY) draw_hare(screen, 200, 200, 200, 300, GRAY)