https://www.bilibili.com/video/BV1Kt4y1 ... 37b371e9ce
map函數
代碼: 選擇全部
//滑鼠左右移動灰階變化
//map的寫法--> 映射值=map(被映射值,a,b,A,B) a,b原區間 A,B欲求區間
float c=0;
void setup(){
size(800,800);
}
void draw(){
c=map(mouseX,0,width,0,255);//size宣告後才能變數 width 寛 height 高
background(c);
}
代碼: 選擇全部
//random的寫法
float t=0;
void setup(){
size(300,300);
frameRate(1);
}
void draw(){
background(255);
for(int i=0;i<width;i+=5)
{
stroke(0);
strokeWeight(3);
line(i,0,i,random(0,height));
//line(x1,y1,x2,y2);
}
}