Results 1 to 4 of 4
  1. #1
    davisater's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    I live in Singapore
    Posts
    25
    Reputation
    10
    Thanks
    3
    My Mood
    Tired

    Java Applet rotating a circle around a oval

    Hi,

    Could anyone help me rotate this circle around the oval? Or could anyone tell me where i should start?

    Code:
    import java.awt.*;
    import java.applet.*;
    
    
    public class Rotate extends Applet implements Runnable {
        
        
        public void init() {
            
        }
        
        public void start() {
            
            Thread t = new Thread(this);
            t.start();
            
        }
        
        public void run() {
            
            Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
            while (true){
                
                repaint();
                try {
                    Thread.sleep(500);
                }
                catch (InterruptedException e) {
                    //Do Nothing
                }
                Thread.currentThread().setPriority(Thread.MAX_PRIORITY); 
            }
        	
        }
            
        public void paint(Graphics g) {
        g.drawOval(75,20,150,115);
        g.fillOval(90,25,20,20);
        
        
        }
    
    }

  2. #2
    davisater's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    I live in Singapore
    Posts
    25
    Reputation
    10
    Thanks
    3
    My Mood
    Tired
    Sorry for double posting (Can't seem to find the edit button anymore for some reason)

    Er.. by rotate i meant move around the outline of the oval.

    If anyone knows how please reply soon as this is a urgent problem (assignment) because apparently my java teacher went on leave for a few weeks now for unknown reason so we had a sub teacher which doesn't know anything about java apparently and called us to figure it out ourself.

    Any help would be greatly appreciated.

  3. #3
    davisater's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    I live in Singapore
    Posts
    25
    Reputation
    10
    Thanks
    3
    My Mood
    Tired
    Nvm, done it.

    Mods can close this thread now

  4. #4
    dkofek's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    The toilet in the club next to your house
    Posts
    59
    Reputation
    13
    Thanks
    114
    My Mood
    Bored
    If you've succeeded in your problem, please add the solution for others with the same problem to see
    (I don't need that for now, but others might)

Similar Threads

  1. [Help] Open a Java Applet inside VB [solved]
    By Hell_Bunny in forum Visual Basic Programming
    Replies: 9
    Last Post: 04-19-2011, 10:40 PM
  2. a good java program
    By snipelock in forum Java
    Replies: 18
    Last Post: 04-17-2009, 02:56 PM
  3. Sig Rotator
    By blahblahz in forum Tutorials
    Replies: 5
    Last Post: 05-15-2006, 03:02 AM
  4. Get around detection??
    By usernameee in forum General Game Hacking
    Replies: 0
    Last Post: 02-21-2006, 10:16 PM
  5. Java
    By Sean Johnson in forum General Game Hacking
    Replies: 2
    Last Post: 02-07-2006, 01:53 PM