From b890bab3248aa4ef1f516767813ff7a4bab0fe51 Mon Sep 17 00:00:00 2001 From: Hope Date: Tue, 24 Jun 2025 11:23:00 -0400 Subject: [PATCH] I updated the planning document to break down the scatter plot problem. I can draw the lines and ticks. I will need to refresh myself on the printing the labels and the syntax for lists. --- planning_scatter.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/planning_scatter.md b/planning_scatter.md index d566f3f..1e4b962 100644 --- a/planning_scatter.md +++ b/planning_scatter.md @@ -4,9 +4,17 @@ - Draw the axes. - Draw the x-axis. - Draw the line. - - ... + - Draw the tick marks, allow for the receiving of a parameter for distance between ticks + - Label the ticks according to the parameter. + - Allow for a label of the axis. - Draw the y-axis. - Draw the line. - - ... + - Draw the tick marks, accept a parameter for distance between ticks + - Label the ticks according to the parameter. + - Allow for a label of the axis. - Plot the points. - - ... + - Accept a color and a list of x, y coordinates + - set the pen size and color + - Loop through and navigate to each coordinate + - Draw a dot at each coordinate + - reset to the origin after each dot is plotted