Displaying 1 result from an estimated 1 matches for "screen2d".
2005 Aug 09
3
file
...0;i<6;i++){
imgText=getParameter("image"+i);
if(imgText!=null){
totalpic++;
picture[i] = this.getImage(this.getCodeBase(), imgText);
}
else
totalpic++;
}
}
//********************************
public void paint(Graphics screen){
Graphics2D screen2D=(Graphics2D) screen;
if(picture[current]!=null){
screen2D.drawImage(picture[current],0,0,this);
// g.drawImage(img2, m, n, 60, 40, this);
}
}
//*********************************
/* public void start(){
if(runner==null){
runner=new Thread(this);
ru...