-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathball.py
31 lines (25 loc) · 816 Bytes
/
ball.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
from turtle import Turtle
class Ball(Turtle):
def __init__(self):
super().__init__()
self.shape('circle')
self.color('white')
self.penup()
self.x_move = 10
self.y_move = 10
self.move_speed = 0.1
def ball_move(self):
new_x = self.xcor() + self.x_move
new_y = self.ycor() + self.y_move
self.goto(new_x, new_y)
def changing_ball_direction_y(self):
"""changing direction after hitting wall - y axis"""
self.y_move *= -1
def changing_ball_direction_x(self):
"""changing direction after hitting paddle - x axis"""
self.x_move *= -1
self.move_speed *= 0.9
def reset_position(self):
self.goto(0, 0)
self.move_speed = 0.1
self.changing_ball_direction_x()