jpanel - Java - Reading coordinates -


g.drawrect(30, 50, 30, 30); g.filloval(30, 90, 30, 30); 

=
g.drawrect(x, y, width, length); g.filloval(x, y, width, length);

is correct? how need understand these numbers/coordinates?


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -