From b91b582d8a6c0b2e78a20a517c6e0d3b036725d8 Mon Sep 17 00:00:00 2001 From: ArghKevin Date: Mon, 29 Apr 2024 13:32:18 -0700 Subject: Week 2. Stubs. Start of GUI. --- src/LineGraph.java | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/LineGraph.java (limited to 'src/LineGraph.java') diff --git a/src/LineGraph.java b/src/LineGraph.java new file mode 100644 index 0000000..b9642fb --- /dev/null +++ b/src/LineGraph.java @@ -0,0 +1,24 @@ +import javax.swing.*; + +/* + * @author + * Kian Agheli + * + * References: + * + * Date: + * 2024-04-28 + * + * Purpose of class: + * Draw a line graph. + */ + +public class LineGraph { + int[][] coordinates; // A line graph has-a set of coordinates + public LineGraph() { + coordinates = null; + } + + void setCoordinates(int y, int x) { + } +} -- cgit v1.2.3