diff --git a/src/GUI/coordinate_system/clusters.py b/src/GUI/coordinate_system/clusters.py index ee6b347..31c006c 100644 --- a/src/GUI/coordinate_system/clusters.py +++ b/src/GUI/coordinate_system/clusters.py @@ -7,7 +7,7 @@ def __init__(self, canvas: tk.Canvas): # List to keep track of cluster IDs and their positions self.clusters: list[Cluster] = [] - def draw_cluster(self, x, y, color, radius=5): + def draw_cluster(self, x, y, color, radius=20): """Draws a cluster (circle) at (x, y) with the given radius and color.""" cluster_id = self.canvas.create_oval( x - radius, y - radius, x + radius, y + radius, outline="black", fill=color) diff --git a/src/GUI/coordinate_system/points.py b/src/GUI/coordinate_system/points.py index 8d57bce..bed8241 100644 --- a/src/GUI/coordinate_system/points.py +++ b/src/GUI/coordinate_system/points.py @@ -3,7 +3,7 @@ def __init__(self, canvas): self.canvas = canvas self.points = [] - def draw_point(self, x, y, color: str = 'blue', radius=10): + def draw_point(self, x, y, color: str = 'blue', radius=40): """Draws a point (larger circle) at (x, y) with the given radius and color.""" point_id = self.canvas.create_oval( x - radius, y - radius, x + radius, y + radius, outline=color, fill=color)