I am trying to plot co-ordinates in variables. I am using the Point
class and can not find a simple way to iterate the variables.
To plot a point of (0,0), I try the following code,
class Main {
public static void main(String[] args){
point p = new Point();
}
}
and get an error saying it can't find the symbol Point. (for some reason it can't find the symbol point at the start too, but I thought that was just declaring the name of the variable?) Do you have to put something before this to make it work?