Basically I am trying to make an endPosition
take the values from position and add to those x, y
values.
I am just struggling to figure out the right syntax to do so.
Point position= new Point((int) (Math.random()*(max - min)), (int) (Math.random() *(max - min)));
Point endPosition = new Point();
Point endPosition = (position.x + 2);