P3D issues (smooth not work + slow sketch running)
in
Programming Questions
•
8 months ago
Hello!
So, here's the thing, I've got two issues with P3D:
1. using the smooth() function doesn't have any effect on my sketch
2. when I run the sketch, a window pops up (as usual), but for the actual result I have to wait a few seconds, why does it need so much time?
Here's a simple example from processing.org that contains both of my problems:
So, here's the thing, I've got two issues with P3D:
1. using the smooth() function doesn't have any effect on my sketch
2. when I run the sketch, a window pops up (as usual), but for the actual result I have to wait a few seconds, why does it need so much time?
Here's a simple example from processing.org that contains both of my problems:
- size(100, 100, P3D);
- smooth();
- translate(58, 48, 0);
- rotateY(0.5);
- noFill();
- box(40);
I'm using Processing 2.0b7 on Win7
Btw, when I try to run some P3D sketches at http://www.openprocessing.org/, they seem to work fine in the browser (smooth() works and sketch starts almost immediately), but when I copy the code and run it on my PC, the two problems appear.
Btw, when I try to run some P3D sketches at http://www.openprocessing.org/, they seem to work fine in the browser (smooth() works and sketch starts almost immediately), but when I copy the code and run it on my PC, the two problems appear.
1