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) {
}
}