Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-25-2009, 07:31 AM
SwEeTAcTioN's Avatar
Member
 
Join Date: Oct 2009
Posts: 69
Rep Power: 0
SwEeTAcTioN is on a distinguished road
Default Fish animation
So i was playin around with awt and drew a fish now i won the fish to move across the screen which ive sorta done ive gat it to mave but the line just gets thicker(run the code if you dont understand). How do i make it draw a new line (already done) but how do i make it erase the old line

All help is appreciated


Code:
import java.io.*;
 import java.util.Random;
 import java.text.DecimalFormat;
 import javax.swing.*;
 import java.awt.*;
import java.awt.event.*;
import java.awt.Color;

public class Template
{
	public static void main (String args[])throws IOException
	{
      Windows win = new Windows();
      win.setSize(800,600);
      win.addWindowListener(new WindowAdapter() {public void
      windowClosing(WindowEvent e) {System.exit(0);}});
      win.show();
       }
}

class Windows extends Frame
{
       public void paint(Graphics screen)
       {
    
         Polygon fish= new Polygon();
        
         for(int x1=1;x1<=60;x1++)
         {
         fish.addPoint((125+x1),150);
         fish.addPoint((125+x1),350);
         fish.addPoint((175+x1),250);
         screen.drawPolygon(fish);
         screen.drawLine((175+x1),250,(250+x1),400);
         screen.drawLine((250+x1),400,(375+x1),275);
         screen.drawLine((375+x1),275,(260+x1),125);
         screen.drawLine((175+x1),250,(260+x1),125);
         screen.drawOval((290+x1),225,50,50);
         screen.setColor(Color.green);
         screen.fillOval((308+x1),242,20,20);
         delay(5000);
         }
         
       } 
 public static void delay(double d)
     {
     double n;
     for(n=0;(n<=d);n+=.0001);
     } 
/* public static move(int x1)           //comment out start
  {
	int move=x1+=1;
	return move;                           
  }
   public static move2(int x2)
  {
	int move2=x2+=1;
	return move2;
  }*/                                         // comment out end
}
__________________
Are you suggesting that Cocunuts migrate?!! -Monty Python
Bookmark Post in Technorati
Reply With Quote
  #2 (permalink)  
Old 11-26-2009, 06:47 AM
SwEeTAcTioN's Avatar
Member
 
Join Date: Oct 2009
Posts: 69
Rep Power: 0
SwEeTAcTioN is on a distinguished road
Default
um... a little help please
__________________
Are you suggesting that Cocunuts migrate?!! -Monty Python
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 11-26-2009, 07:23 AM
SwEeTAcTioN's Avatar
Member
 
Join Date: Oct 2009
Posts: 69
Rep Power: 0
SwEeTAcTioN is on a distinguished road
Default
Im gonna mark this as solved and open it up in the AWT section
__________________
Are you suggesting that Cocunuts migrate?!! -Monty Python
Bookmark Post in Technorati
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
need help about animation ? h9h Java 2D 1 10-30-2009 12:41 PM
JTextArea Animation hoglu New To Java 1 12-18-2008 12:44 PM
Two sleeps in animation George1935 AWT / Swing 4 10-13-2008 01:47 AM
GUI Animation serfster New To Java 2 06-11-2008 04:37 AM
Animation with Animated GIF JavaBean Java 2D 1 06-07-2007 06:11 PM


All times are GMT +2. The time now is 02:45 PM.



VBulletin, Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2009, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org