我正在学习使用Processing,并修改了其中一个示例以创建this applet。我有两个问题:
以下是这个小程序的来源:
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();
}
}
答案 0 :(得分:3)
在这种情况下,平滑函数不能很好地工作,因为你有相邻的多边形。在没有图片的情况下跟踪有点棘手,但想想一个位于两个多边形之间边缘的像素。例如,假设背景为(0,0,0),多边形为(255,255,255)。第一个多边形绘制并命中该像素。它覆盖了它的一半,因此它计算0.5 *(0,0,0)+ 0.5 *(255,255,255)并保存(126,126,126)作为该像素的新值。第二个多边形绘制。它还覆盖了一半的像素,因此它计算0.5 *(126,126,126)+ 0.5 *(255,255,255)并节省(190,190,190)。这是不正确的,因为两个多边形应该各自覆盖不同的一半,并产生(255,255,255)的颜色。但是,如果您单独绘制每个多边形并且不在其间保存任何覆盖信息,则无法弄清楚。
现代显卡支持名为multisample antialiasing的内容。这节省了关于第一个多边形覆盖的像素部分的一些信息。处理试图在没有硬件支持的情况下模拟这个,所以当你没有邻接的原语时,它会使用一个非常好的技巧,但是当你这样做时会崩溃。
至于扁率。默认情况下,Processing会填充整个窗口,并且您的大小不是正方形。处理此问题的最简单方法是使用正交函数使相机的纵横比为正方形。尝试将其添加到您的设置中:
邻(-360,360,-180,180,-10,10);
答案 1 :(得分:0)
关于漂亮的圆边,尝试在setup()中调用方法smooth():
void setup() {
// ...
smooth();
// ...
}