vote up 0 vote down star
1

I am learning to use Processing, and have modified one of the examples to create this applet. I have two questions:

  1. Why are the spheres oblate? The spheres in the example I cribbed from were nice and round.
  2. Why do I get the light showing on the outside edges of the spheres, when the point source is between them?

Here is the source for this little program:

int radius = 40;
int spheredist = 320;
int maxlevel = 7;
float ecc = 0.28;
int x1, x2, y1, y2;

void setup() {
  size(640, 360, P3D);
  fill(204);
  //smooth();  // makes spheres ugly
  translate(width/2, height/2, 0);
  x1 = -spheredist/2+radius;
  x2 = spheredist/2-radius;
  y1 =
  y2 = 0;
}

void drawLightning(int x1_,int y1_,int x2_,int y2_,int lvl){
   if (lvl < maxlevel){
     int midx = (x1_ + x2_)/2;
     int midy = (y1_ + y2_)/2;
     float d = dist(x1_, y1_, x2_, y2_);
     d *= ecc;
     midx += random(-d, d);
     midy += random(-d, d);
     drawLightning(x1_, y1_, midx, midy, lvl+1);
     drawLightning(midx, midy, x2_, y2_, lvl+1);
   } else {
     strokeWeight(10);
     stroke(60,100,255,100);
     line(x1_,y1_,x2_,y2_);
     strokeWeight(1);
     stroke(255);
     line(x1_,y1_,x2_,y2_);
   }
}

void draw() {
  background(0); 
  noStroke(); 
  int brt = 200;
  pointLight(brt/2, brt/2, brt/2, spheredist/2, -spheredist, spheredist); 
  ambientLight(brt/8,brt/8,brt/8);


  if ((mouseX > width/4 && mouseX < width*3/4) &&
      (mouseY > height/2-radius && mouseY < height/2+radius)) {
    pushMatrix();
    translate(width/2, height/2, 0);
    pointLight(100, 100, 255, 0, 0, 0); 
    popMatrix();
  }

  pushMatrix();
  translate(width/2 - spheredist/2, height/2, 0); 
  sphere(radius); 
  translate(spheredist, 0, 0); 
  sphere(radius); 
  popMatrix();

  if ((mouseX > width/4 && mouseX < width*3/4) &&
      (mouseY > height/2-radius && mouseY < height/2+radius)) {
    pushMatrix();
    translate(width/2, height/2, 0);  
    drawLightning(x1,y1,x2,y2,0);
    popMatrix();
  }
}
flag
I don't see how anyone is able to tell without seeing your code. – Bart K. Oct 6 at 11:19
@Bart: Sorry, I'm still getting used to Processing. The applet page generates a source code link, which I thought would display the source, and which I thought was the convention for publishing one's sketches. I'll edit the question to include it right here. – Paul McGuire Oct 6 at 12:43
@Paul McGuire: Thanks. I didn't know a link to the source was there. I didn't try to run the applet since Processing-applets cannot be run with Java's IcedTea plugin for Firefox on my 64 bit Linux machine, unfortunately. I'll have a look at the code later on. – Bart K. Oct 6 at 13:00
Neither of the problems you describe happen when I run the code. I see the light bouncing off the insides of the spheres, which are spherical! – Jonathan Feinberg Oct 6 at 17:20

1 Answer

vote up 0 vote down

About the nice round edges, try calling the method smooth() in your setup():

void setup() {
  // ...
  smooth();
  // ...
}
link|flag
Thanks for your answer, but this actually makes things worse. The triangles that make up the spheres' surfaces become visible, and the light shows "through" the spheres. – Paul McGuire Oct 6 at 12:39
Ah yes, smooth() is AFAIK only used for 2D drawing in Processing. It didn't occur to me you were making a 3D drawing. Unfortunately, I've never done much 3D in Processing. – Bart K. Oct 6 at 13:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.