Hey guys, Iām making a program where horizontal lines spawn at the edge of the screen at regular intervals, as if it were a moving road. What are the coordinates for 1/3 and 2/3 of the way down the screen on the right side?


1 2 | int hiY = getHeight()/ 3 ; int loY = getHeight()* 2 / 3 ; |