Results 1 to 3 of 3

Thread: how would i do this?

  1. #1

    Thread Starter
    Fanatic Member nabeels786's Avatar
    Join Date
    Jul 2001
    Location
    New York
    Posts
    919

    how would i do this?

    im using the java advanced imageing library and...

    i have a panel with an image on it...when the panel is click i want it to flip around and display another image...how would i do something like that?

    thanks
    Visit www.fragblast.com
    Gaming, forums, and a online RPG/Battle system




    (__Flagg) DOT NET? is this a Hindi Dating service?

  2. #2
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418
    I don't know how you could make it look like it was flipping around but for the display part i guess you could just test for a mouse event and load an alternate image when that event is fired off.

  3. #3

    Thread Starter
    Fanatic Member nabeels786's Avatar
    Join Date
    Jul 2001
    Location
    New York
    Posts
    919
    i got it to flip, but now i just gotta make it sorta rotate slowly



    Code:
    	private void updateWarp() {
    			PerspectiveTransform test;
    			if(flip==false){ //flip horizontal
    				test = PerspectiveTransform.getQuadToQuad(
    					(float) width,(float) 0,
    					(float) 0, (float) 0,
    					(float) 0, (float) height,
    					(float) width,(float) height,
    					(float)0,(float) 0,
    					(float)width,(float) 0,
    					(float)width,(float) height,
    					(float)0, (float) height);
    					
    					flip=true;
    			}else{
    				test = PerspectiveTransform.getQuadToQuad(
    					(float) 0,(float) 0,
    					(float) width, (float) 0,
    					(float) width, (float) height,
    					(float) 0,(float) height,
    					(float)0,(float) 0,
    					(float)width,(float) 0,
    					(float)width,(float) height,
    					(float)0, (float) height);
    					
    					flip=false;
    			}
    Visit www.fragblast.com
    Gaming, forums, and a online RPG/Battle system




    (__Flagg) DOT NET? is this a Hindi Dating service?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width