Loading...
Logo
Processing Forum

Can someone help me to apply texture to shutter...


Copy code
  1. import processing.opengl.*;
  2. import codeanticode.glgraphics.*;
  3. import de.looksgood.ani.*;

  4. GLModel texquad;
  5. GLTexture tex;
  6. int numPoints = 4;
  7. float diameter = 1000.0;
  8. float Xwindow = 500.0;
  9. float Ywindow = 300.0;
  10. float yyG = -1 * (sqrt(diameter*diameter/4 - Xwindow*Xwindow/4)) - Ywindow/2;
  11. float yyD = sqrt(diameter*diameter/4 - Xwindow*Xwindow/4) - Ywindow/2;
  12. PVector oS1 = new PVector(0, -Ywindow/2);
  13. PVector oE1 = new PVector(-Xwindow/2, yyG + diameter/2);
  14. PVector oP1 = new PVector(-Xwindow/2, yyG);
  15. PVector oR1 = new PVector();
  16. PVector oS2 = new PVector(0, Ywindow/2);
  17. PVector oE2 = new PVector(-Xwindow/2, -yyG - diameter/2);
  18. PVector oP2 = new PVector(-Xwindow/2, -yyG);
  19. PVector oR2 = new PVector();
  20. float theta1 = 0.0;
  21. float theta2 = 0.0;
  22. float angle;

  23. void setup() {
  24.  
  25.  size(1280, 720, GLConstants.GLGRAPHICS); 
  26.  
  27.   //Ani.init(this);
  28.  
  29.   angle = asin(Xwindow/diameter);
  30.  
  31.   // The model is dynamic, which means that its coordinates can be
  32.   // updating during the drawing loop.
  33.   texquad = new GLModel(this, numPoints, QUADS, GLModel.DYNAMIC);
  34.    
  35.   // Updating the vertices to their initial positions.
  36.   texquad.beginUpdateVertices();
  37.   texquad.updateVertex(0, -100, -100, 0);
  38.   texquad.updateVertex(1, 100, -100, 0);
  39.   texquad.updateVertex(2, 100, 100, 0);
  40.   texquad.updateVertex(3, -100, 100, 0);   
  41.   texquad.endUpdateVertices();
  42.   // Enabling the use of texturing...
  43.   texquad.initTextures(1);
  44.   // ... and loading and setting texture for this model.
  45.   //tex = new GLTexture(this, "milan.jpg");   
  46.   texquad.setTexture(0, tex);
  47.   
  48.   // Setting the texture coordinates.
  49.   texquad.beginUpdateTexCoords(0);
  50.   texquad.updateTexCoord(0, 0, 0);
  51.   texquad.updateTexCoord(1, 1, 0);   
  52.   texquad.updateTexCoord(2, 1, 1);
  53.   texquad.updateTexCoord(3, 0, 1);
  54.   texquad.endUpdateTexCoords();
  55.  
  56. }

  57. void draw() {

  58.   noStroke();

  59.   //GLGraphics renderer = (GLGraphics)g;
  60.   //renderer.beginGL(); 
  61.  
  62.   background(100);
  63.  
  64.   translate(width/2, height/2);    
  65.   //rotateY(frameCount * 0.01);  
  66.  
  67.   // LEFT
  68.   fill(255, 200, 200, 30);
  69.   ellipse(-Xwindow/2, yyG, diameter, diameter);
  70.   ellipse(-Xwindow/2, -yyG, diameter, diameter);
  71.  
  72.   // RIGHT
  73.   fill(200, 255, 200, 30);
  74.   ellipse(Xwindow/2, yyG, diameter, diameter);
  75.   ellipse(Xwindow/2, -yyG, diameter, diameter);
  76.  
  77.   // WINDOW
  78.   fill(255, 0, 0, 150);
  79.   rect(-Xwindow/2, -Ywindow/2, Xwindow, Ywindow);
  80.  
  81.   //float theta = radians(frameCount/10);
  82.   theta1 += 0.2;
  83.   theta2 -= 0.2;
  84.  
  85.   //Ani.to(this, 2.0, "theta1", -degrees(angle), Ani.QUAD_IN);
  86.   //Ani.to(this, 2.0, "theta2", -degrees(angle), Ani.QUAD_IN);
  87.  
  88.   if (theta1 >= degrees(angle)) theta1 = 0.0;
  89.   if (theta2 <= -degrees(angle)) theta2 = 0.0;
  90.  
  91.   float cosTheta1 = cos(radians(theta1));
  92.   float sinTheta1 = sin(radians(theta1));
  93.   float cosTheta2 = cos(radians(theta2));
  94.   float sinTheta2 = sin(radians(theta2));
  95.   oR1.x = oP1.x + (oS1.x - oP1.x)*cosTheta1 - (oS1.y - oP1.y)*sinTheta1;
  96.   oR1.y = oP1.y + (oS1.x - oP1.x)*sinTheta1 + (oS1.y - oP1.y)*cosTheta1;
  97.  
  98.   oR2.x = oP2.x + (oS2.x - oP2.x)*cosTheta2 - (oS2.y - oP2.y)*sinTheta2;
  99.   oR2.y = oP2.y + (oS2.x - oP2.x)*sinTheta2 + (oS2.y - oP2.y)*cosTheta2;
  100.  
  101.   strokeWeight(2);
  102.   stroke(0, 0, 255, 75);
  103.   line(oP1.x, oP1.y, oR1.x, oR1.y);
  104.   line(oP2.x, oP2.y, oR2.x, oR2.y);
  105.  
  106.   noStroke();
  107.   fill(0, 255, 0);
  108.   ellipse(oR1.x, oR1.y, 10, 10);
  109.   ellipse(oR2.x, oR2.y, 10, 10);
  110.  
  111.   beginShape();
  112.   fill(255, 255, 0);
  113.   vertex(-Xwindow/2, -Ywindow/2);
  114.   vertex(oR1.x, oR1.y);
  115.   vertex(oR2.x, oR2.y);
  116.   vertex(-Xwindow/2, Ywindow/2);
  117.   endShape();
  118.  
  119.   /*
  120.   texquad.beginUpdateVertices();
  121.     texquad.displaceVertex(0, -Xwindow/2, Ywindow/2);
  122.     texquad.displaceVertex(1, oR2.x, oR2.y);
  123.     texquad.displaceVertex(2, oR1.x, oR1.y);
  124.     texquad.displaceVertex(3, -Xwindow/2, -Ywindow/2);
  125.   texquad.endUpdateVertices();
  126.   */
  127.  
  128.   //renderer.model(texquad);
  129.   //renderer.endGL();
  130.  
  131. }

Replies(4)


Here's one solution ( I can't clear the screen with " image(back,0,0); " - only with " background (0); " ??? )


Copy code
  1. import processing.opengl.*;
  2. float counter1 = 0.0;
  3. float counter2 = 180.0;
  4. PImage img, back;

  5. void setup()
  6. {
  7.   size(1280, 720, OPENGL);
  8.   back=loadImage("background.jpg");
  9.  
  10.   img = createImage(640, 720, RGB);
  11.   img.loadPixels();
  12.   for (int i = 0; i < img.pixels.length; i++) {
  13.     img.pixels[i] = color(0, 90, 102);
  14.   }
  15.   img.updatePixels();
  16. }

  17. void draw()
  18. {
  19.   background(0);
  20.   //image(back,0,0);
  21.   counter1++;
  22.   counter2--;
  23.  
  24.   pushMatrix();
  25.   //scale(map(counter1, 0.0, 180.0, 1.0, 0.7), 1);
  26.   rotateY(radians(counter1));
  27.   image(img, 0, 0);
  28.   popMatrix();
  29.  
  30.   pushMatrix();
  31.   translate(1280, 0);
  32.   //scale(map(counter2, 180.0, 0.0, 1.0, 0.7), 1);
  33.   rotateY(radians(counter2));
  34.   image(img, 0, 0);
  35.   popMatrix();
  36.  
  37.   if(counter1 == 180.0) counter1 = 0.0;
  38.   if(counter2 == 0.0) counter2 = 180.0;
  39. }



I can't clear the screen with " image(back,0,0); " - only with " background (0); " ???


the image back must have the same size as your screen
then try
Copy code
  1. background (back);










YESS!

Anyway, the first solution looks more natural.
Two vertices are moving from point A to point B on arc of the circle with greater diameter.
But this polygon needs a texture..