text 与circles.pde有关
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 与circles.pde有关相关的知识,希望对你有一定的参考价值。
int i = 0, j =0, k =0, y=0, r, degreepoint = 0, d1, d2;
int angle1, point;
int radius = 300;
void setup()
{
size(800, 800);
background(255, 254, 233);
noLoop();
}
void draw() {
strokeWeight(3);
stroke(0, 0, 0);
//translate(width*0.25, height*0.25);
pushMatrix();
translate(width*.5, width*.5);
for (k = 0; k < 360; k++) {
angle1 = k;
line(0, 0, radius*cos(radians(angle1)), radius*sin(radians(angle1)));
}
popMatrix();
//save("circles.png");
print("done");
}
/* float ry = 0, ry2, i, j;
void setup() {
size(700, 700);
background(57);
smooth();
noFill();
stroke(2);
noLoop();
}
void draw() {
beginShape();
for(j = 0; j < height; j++){
for(i = 0; i < height; i++){
//curveVertex(ry, i);
ry += int(random(-2,2));
line(ry2, i, ry,i);
ry2 = ry;
}
ry =+ j*2;
}
endShape();
} */
以上是关于text 与circles.pde有关的主要内容,如果未能解决你的问题,请参考以下文章
text 4 circles.pde
selenium定位方法
webservice有关application/xop+xml的异常
与时间有关的类Date,DateFormat,Calendar
C#方法有关内容的总结--C#基础
编程实例--for循环,找出0~100之间与8有关的正整数