I finished the list of things that need to be accomplished to make a scatter plot.

I could be able to write the x and y axis, but I don't know how to draw the dots or the minimum and maximum ticks for the axes yet.
This commit is contained in:
kdang
2025-10-09 09:44:58 -04:00
parent e545759daf
commit 4c13f3169c

View File

@@ -4,9 +4,12 @@
- Draw the axes. - Draw the axes.
- Draw the x-axis. - Draw the x-axis.
- Draw the line. - Draw the line.
- ... - Draw ticks that are evenly spaced by a specific number.
- Find the minimum and maximum x value.
- Draw the y-axis. - Draw the y-axis.
- Draw the line. - Draw the line.
- ... - Draw ticks that are evenly spaced by a specific number.
- Find the minimum and maximum y value.
- Plot the points. - Plot the points.
- ... - Assign coordinates to each point.
- Collect data for coordinates.