В приведенном ниже коде приведена следующая ошибка:
NameError: name 'Vector2' is not defined
в этой строке:
def Translate (self, pos: Vector2):
Почему Python не распознает мой класс Vector2
в методе Translate
?
class Vector2:
def __init__(self, x: float, y: float):
self.x = x
self.y = y
def Translate(self, pos: Vector2):
self.x += pos.x
self.y += pos.y