Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
JPanel panel1 = new JPanel();
JPanel panel2 = new JPanel();
3DRect myRect = new 3DRect(); // whatever this is...
panel1.add(myRect); // 3DRect will be shown on panel1
wait(2000);
panel1.remove(myRect); // 3DRect will be removed from panel1
panel2.add(myRect); // 3DRect will be shown on panel2
[code]
Is it that what you were looking for?
patrick.metz@epost.de