import cli import vec cli.init() pos = vec.Vec2d(0) vec = vec.Vec2d(0.5, 0.3) vec.norm() while True: cli.clear() cli.rect(pos.x, pos.y, 0, 0, '@', (255, 0, 0), (0, 0 ...
# TODO: Type this more accurately # Vec2D is actually a custom subclass of 'tuple'. Vec2D: TypeAlias = tuple[float, float] I don't know what resources and priorities you all have, but this caused me a ...