diff options
Diffstat (limited to 'src/LineGraph.java')
-rw-r--r-- | src/LineGraph.java | 24 |
1 files changed, 24 insertions, 0 deletions
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) { + } +} |