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.
This commit is contained in:
Hope 2025-06-24 11:23:00 -04:00
parent fdb66d683b
commit b890bab324
1 changed files with 11 additions and 3 deletions

View File

@ -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