summaryrefslogtreecommitdiff
path: root/src/LineGraph.java
blob: b9642fb4a5bfc03efffd815baf6d7ba493d1a55e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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) {
	}
}