diff --git a/birdvisu/annotations/layout.py b/birdvisu/annotations/layout.py index 8e4cae1..ccaebde 100644 --- a/birdvisu/annotations/layout.py +++ b/birdvisu/annotations/layout.py @@ -195,7 +195,7 @@ class PlaceUnplacedVertices(StyleAnnotator): vtxid, x, y, move = queue.pop(0) # Maybe bad code? (cf. deque) if move: angle = random.random() * 2 * math.pi - distance = random.randint(20, 200) + distance = random.randint(20, 500) dx = distance * math.cos(angle) dy = distance * math.sin(angle) x += dx