Loading...
Logo
Processing Forum
Hello.

I want a rectangle to spin around it's on center.

my rect is spawning outside the screen and will aim at the center.
I want it to rotate all the way...   can figure it out, please help me.

Best to do this in the class or in main?




Copy code
  1. class komet{

  2.   int a = 15;
  3.   int b = 15;
  4.   float x = 0;
  5.   float y = 0;
  6.   float komet1,komet2;
  7.   
  8.   
  9.   komet(float _x, float _y){
  10.     x = _x;
  11.     y = _y;
  12.     float speed = 1;
  13.     float ang = atan2(height/2-y, width/2-x);
  14.     komet1 = cos(ang)*speed;
  15.     komet2 = sin(ang)*speed;
  16.   }
  17.   void movement(){
  18.     x +=komet1;
  19.     y +=komet2;
  20.   }
  21.   void kometer(){
  22.    rect(x,y,a,b);
  23.    noStroke();
  24.  
  25.   }        
  26.   void collision(){  
  27.     if ( dist(x, y, i1, i2) < i3) {
  28.       println("traff");            
  29.       x = 1000000;
  30.       y = 1000000;      
  31.       i++;
  32.     }
  33.   }  
  34. void smart(){
  35.    movement();
  36.    kometer();       
  37.    collision();  
  38. }
  39. }


this is my mainer



Copy code
  1. PImage jorden;
  2. import simpleML.*;
  3. int e = 0;

  4. ArrayList kometer = new ArrayList();

  5. int x = 0;
  6. int y = 0;
  7. int douche = 0;
  8. int i1 = 503;
  9. int i2 = 245;
  10. int i3 = 62;
  11. int i = 0;

  12. komet k;

  13. PFont Font;


  14. XMLRequest xmlRequest;
  15. int startTime;     // for the timer to make request ever N seconds
  16. String html = "";  // String to hold data from request




  17. void setup() {

  18.   // Creating and starting the request
  19.   xmlRequest = new XMLRequest(this, "http://search.twitter.com/search.rss?q=end");
  20.   xmlRequest.makeRequest();
  21.   size(height = 1000, width = 500);
  22.   
  23.   smooth();
  24. }



  25. void draw() {

  26.   background(0);  
  27.   ellipse(i1, i2, i3*2, i3*2);
  28.   fill(227, 222, 181);

  29.   // Every 5 seconds, make a new request
  30.   int now = millis();
  31.   if (now - startTime > 2000) {
  32.     xmlRequest.makeRequest();
  33.     println("Making request!");
  34.     startTime = now;
  35.   }
  36.   jorden = loadImage("earth.png"); //Bilden
  37.   imageMode(CENTER);
  38.   image(jorden, 500, 250);


  39.   for (int i = 0; i < kometer.size(); i++) {
  40.     komet k = (komet)kometer.get(i);

  41.     k.smart();
  42.   }
  43.   Font = loadFont("PressStartK-48.vlw");
  44.   textFont(Font,48);
  45.   text(i, 25, 75);
  46. }





  47. // When the request is complete
  48. void netEvent(XMLRequest ml) {
  49.   // Retrieving an array of all XML elements inside "<title*>" tags
  50.   String[] headlines = ml.getElementArray("title");
  51.   for (int i = 0; i < headlines.length; i++) {
  52.     // println(headlines[i]);
  53.   }

  54.   for (String html: headlines) {  
  55.     if (html.toLowerCase().contains("2012")) {    
  56.       douche++;      
  57.       println(douche);     


  58.       switch ((int) random(4)) {
  59.       case 0:
  60.         // top edge
  61.         k = new komet( random(width), -10 );
  62.         break;
  63.       case 1:
  64.         // right edge
  65.         k = new komet( width+10, random(height) );
  66.         break;
  67.       case 2:
  68.         // left edge
  69.         k = new komet( -10, random(height) );
  70.         break;
  71.       case 3:
  72.         // bot edge
  73.         k = new komet( random(width), height+10 );
  74.         break;
  75.       }
  76.       kometer.add(k);
  77.     }
  78.   }
  79. }


I also want to explode the rectangle when it hits my "earth.png"

Replies(3)

I just want it to  rotate around its own center.


but in a simple animation...

Cant find this in that code :(