stansbuj wrote
I'm confused by some of the drawLine calls in Main.jack in Project 12 ScreenTest.
do Screen.drawLine(280,90,345,35); // roof
do Screen.drawLine(345,35,410,90); // roof
How can the x1 argument be 280 or 345 when there are only 256 rows?
Jack
x values are horizontal coordinates;
y values are vertical coordinates. There are 512 columns, so valid values for
x coordinates are 0 <=
x < 512.
--Mark