I have this class:
When I'm trying to define a new Instense:
Point nir= new Point(double x, double y);
I'm, getting the error:
Multiple markers at this line - x cannot be resolved to a variable - y cannot be resolved to a variable
How come? I want x and y to be general, not spesific. I'm writing it in a new inter-face. This is the class
EDIT:
I'm trying to change the implement of x0, y0 as a point by the point class In a given inter-face named "Circle".
so this is the begining of circle and there I want to do the above:
public class Circle {
private double x0, y0, radius;
So, besicaly to change the representation of x0, y0 to point structure.