Loading...
Logo
Processing Forum
RyanJP's Profile
17 Posts
23 Responses
0 Followers

Activity Trend

Last 30 days
Show:
Private Message
    I have several .SVG's I'm loading from a folder, and I'm wondering if there's a way to load everything from a folder regardless of how many objects are in there. I saw the selectFolder() function but I'd like to do it automatically for one specific folder, without a prompt
    Hello, just wanted to inquire as to some good sites to download glsl shaders? Or good learning resources (tutorials, etc.)

    I'm very new to the whole shader world but it seems really awesome, looking forward to learning a lot more. I think it would be handy to have a list of sites to browse through when working on new projects for inspiration.

    Specifically right now I'm looking for a simple shader that will mirror half of the screen, so if anyone knows of anything that will do that, I'd be much obliged!
    Is this possible? I figured it would save memory but it doesn't seem to work. I can easily just make multiple texture variables but then I'd have to load the same movie 3 times... anyway I'm sure this is possible, here's what I have so far-

    1. import processing.video.*;

    2. Movie waves;

    3. float radius, step;
    4. int points, numShapes;

    5. void setup() {
    6.   size(1280, 720, P2D);
    7.   background(0);

    8.   waves = new Movie(this, "kaleida.mov");
    9.   waves.loop();

    10.   radius = 200;
    11.   points = 3;
    12.   shapes = 3;
    13.   step = TAU / points;
    14. }

    15. void draw() {
    16.   background(0);
    17.  
    18.   for(int h = 0; h < numShapes; h++){
    19.     pushMatrix();
    20.     stroke(255);
    21.     strokeWeight(2);
    22.     translate(width/2, height/2);
    23.     textureMode(NORMAL);
    24.     beginShape();
    25.     texture(waves);
    26.     rotate(h*45);
    27.     for (int i = 0; i < points+1; i++) {
    28.       float theta = step * i;
    29.       float x = (cos(theta) * radius) + radius;
    30.       float y = (sin(theta) * radius) + radius;
    31.       float tx = x/waves.width+0.5;
    32.       float ty = y/waves.height+0.5;

    33.       vertex(x, y, tx, ty);
    34.     }
    35.     endShape();
    36.     popMatrix();
    37.   }

    38.   frame.setTitle(int(frameRate) + " fps");

    39. }

    40. void movieEvent(Movie m) {
    41.   m.read();
    42. }

    Trying to use a movie as a texture but it isn't displaying properly- I just get an extreme close-up, almost like a single pixel. I'm completely new to textures so I might just be missing something incredibly obvious. Here's my code:

    1. import processing.video.*;

    2. Movie waves;

    3. float radius, step;
    4. int points;

    5. void setup(){
    6.   size(1280, 720, P2D);
    7.   background(0);
    8.   
    9.   waves = new Movie(this, "waves.mov");
    10.   waves.loop();
    11.   
    12.   radius = 200;
    13.   points = 6;
    14.   step = TAU / points;
    15. }

    16. void draw(){
    17.   background(0);
    18.   
    19.   image(waves, 0, 0);
    20.   
    21.   pushMatrix();
    22.     stroke(255);
    23.     strokeWeight(2);
    24.     translate(width/2, height/2);
    25.     textureMode(NORMAL);
    26.     beginShape();
    27.       texture(waves);
    28.       for(int i = 0; i < points; i++){
    29.         float theta = step * i;
    30.         float x = cos(theta);
    31.         float y = sin(theta);
    32.         
    33.         vertex(x * radius, y * radius);
    34.       }
    35.     endShape(CLOSE);
    36.   popMatrix();

    37. void movieEvent(Movie m) {
    38.   m.read();
    39. }
    Alright, I've been trying in vain to create a dynamic kaleidoscope (able to change the reflecting pattern on the fly). I'm using a movie file and basically trying to take half of the image with PImage and flip it, resample that image and flip it again, but I just can't get it working, and also it's very slow. If anyone has any tips on how to get this going efficiently I'd really appreciate it!!
    Now that I've got the basics of programming down and can actually make a sketch that does something, I figure it's time to start programming  more   neatly and efficiently. I keep getting this message when I run my program, wondering what it means and how to fix it-

    1. objc[15006]: Object 0x7ff10b0e3730 of class __NSCFDictionary autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    So I'm trying to use PGraphics to get a buffer for Syphon. My main program calls three separate classes' "run" function, and each class draws itself within those functions. How do I get those classes to be rendered into the PGraphics object? Do I have to have some sort of return value on the individual "run" functions? Perhaps return another PGraphics object? Quite confused. So my code essentially looks like this right now-


    void draw(){
          canvas.beginDraw();
          object1.run();
          object2.run();
          object3.run();
          canvas.endDraw();
    }
      Can't figure out why this simple recursion loop is generating uneven lines on the rectangles. I need accuracy!! Thanks for your help :)
      1. void setup(){
      2.   size(800, 800);
      3.   background(235);
      4.   smooth();
      5.   drawRect(width/2, height/2, 200);
      6. }

      7. void drawRect(float x, float y, float len){
      8.   pushMatrix();
      9.     translate(x, y);
      10.     rotate(radians(45.0));
      11.     
      12.     stroke(0);
      13.     strokeWeight(1);
      14.     noFill();
      15.     rectMode(RADIUS);
      16.     rect(0, 0, len, len);
      17.   popMatrix();
      18.   
      19.   if(len >= 20){
      20.     drawRect(x + len, y, len / 2);
      21.     drawRect(x - len, y, len / 2);
      22.     
      23.     drawRect(x, y + len, len / 2);
      24.     drawRect(x, y - len, len / 2);
      25.   }
      26. }

      Is there a way to convert a range of values to another range?

      For instance I have a node-garden type program with a bunch of nodes floating around and when they get within 100px of one another they draw a line between them. I would like this line to start at 0 alpha and end at a maximum of 255 (were the objects to meet), within the range of 100-0.

      To clarify- when the tested object is 100px away, the line should have an alpha of 0. As it gets closer, the alpha increases accordingly.
      im trying to export a pdf frame from an animation using the method outlined on the library's page, but i keep getting this error:

      isRecording(), or this particular variation of it, is not available with this renderer.


      I've tried every renderer and still get the same message..
      i have a quick question about the way processing works. how come this doesnt work:

      1. size(500, 500);
      2. background(255);
      3. strokeWeight(5);
      4. smooth();
      5. noFill();

      6. for(int i = 1; i <= 3; i++){
      7.   int colorSelect = i;
      8.   
      9.   switch(colorSelect){
      10.     case 1:
      11.       stroke(#FF0000);
      12.     case 2:
      13.       stroke(#00FF00);
      14.     case 3:
      15.       stroke(#0000FF);
      16.   }
      17.   ellipse(height / 2, width / 2, i * 50, i * 50);
      18. }
      But this does:

      1. size(500, 500);
      2. background(255);
      3. strokeWeight(5);
      4. smooth();
      5. noFill();

      6. for(int i = 1; i <= 3; i++){
      7.   int colorSelect = i;
      8.   
      9.   if(i == 1){
      10.     stroke(#FF0000);
      11.   }
      12.   else if(i == 2){
      13.     stroke(#00FF00);
      14.   }
      15.   else{
      16.     stroke(#0000FF);
      17.   }
      18.   ellipse(height / 2, width / 2, i * 50, i * 50);
      19. }
      Thanks!