Loading...
Logo
Processing Forum
briziel's Profile
2 Posts
3 Responses
0 Followers

Activity Trend

Last 30 days
Show:
Private Message
    hi!

    i just write this code. at the moment it draws the "wheel spokes" in irregular gaps. i hope there is a possibility to add steps. for example every 15° a spoke. i really want to end the dependence on the framerate!

    this is my code:
    1. void setup()
    2. {
    3.   size(1000,1000);
    4.   stroke(20);
    5.   smooth();
    6.   frameRate(200);
    7.   rect(490,90,20,20);
    8.  
    9. }

    10. void draw() 
    11. {
    12.   int posX = 500 - mouseX;
    13.   if (posX < 0) {
    14.     posX = 0 - posX;
    15.   }
    16.     
    17.   int posY = 500 - mouseY;
    18.   if (posY < 0) {
    19.     posY = 0 - posY;
    20.   }
    21.    
    22.   float a2 = sq(posX);
    23.   float b2 = sq(posY);
    24.   float c2 = sqrt(a2 + b2);
    25.   int c22 = (int)c2;
    26.   
    27.   if(mousePressed) {
    28.     
    29.     stroke(180);
    30.     line(500, 500, mouseX, mouseY);
    31.     stroke(204, 102, 0);
    32.     line(pmouseX, pmouseY, mouseX, mouseY);
    33.     
    34.     
    35.     println(c22);
    36.    
    37.   }
    38. }