1.設定視窗尺寸、畫線
void setup(){
if(mousePressed) line(mouseX,mouseY,pmouseX,pmouseY);
}
2.追加顏色調整
fill(255,0,0); rect(0,0,50,50); //製作顏色方塊
if(mousePressed&&mouseX<50&&mouseY<50) stroke(255,0,0);
//當滑鼠在顏色方塊上點擊時顏色變為(255,0,0)
3.存檔/讀檔存檔:save("檔名",副檔名);
讀檔:PImage file =loadImage("檔名");
image(file,長,寬);
4.調整粗細
strokeWeight(寬度);
心得:以功能較精簡的情況下,程式碼其實都算不上麻煩,很容易就能學會了,倒是繪畫技術有待加強。
沒有留言:
張貼留言