Red lines are always directed to mouse and they always have the same length.
length = 100
mouse = pygame.mouse.get_pos()
start = pygame.math.Vector2(x, y)
end = start + (mouse - start).normalize() * length
pygame.draw.line(screen, RED, start, end)


