Problem with reading a .csv file

To move the drawing location during drawing, using translate().

https://processing.org/reference/translate_.html

To isolate that move and reset it afterwords – so that it does not affect later drawing – use this:

pushMatrix();
translate(x, y);
// drawing
// commands
// here
popMatrix();

https://processing.org/reference/pushMatrix_.html