diff --git a/scatterplot.py b/scatterplot.py index f807714..3f65090 100644 --- a/scatterplot.py +++ b/scatterplot.py @@ -61,6 +61,7 @@ def draw_points(data, color, size): y = point[1] x_scaled = scale(x, xmin, xmax, ymin, ymax) y_scaled = scale(y, xmin, xmax, ymin, ymax) + print(f"Printing point onto the screen at ({x_scaled}, {y_scaled})") draw_point(x_scaled, y_scaled, color, size)