夏洛:馬冬梅上課老嗑瓜子,影響我成績。
老師:就你這成績還能受影響?你的成績還有下降空間嗎?
——《夏洛特煩惱》
一幅繪畫作品能夠透射出畫者的內心世界,展示畫者的心情、心緒、心意、心跡、心性。繪畫的本身就是畫者傾訴情感的一種方式。繪畫是通過線條、色彩等形象來傳達出畫者的情感,也能讓其他人體驗到這種情感。
點、線、面是平面藝術造型中的三種基本形態,這三種形態各有不同的視覺效果和藝術表現力。我喜歡畫點,因為我想孤獨;我喜歡畫線,因為我想纏綿;我喜歡畫面,因為我想寬容。
Processing提供了簡單易學的繪畫函數,你只需要敲擊幾行簡單的代碼就能創造出令人驚艷的作品。
##4.1 基本圖形
###4.1.1 point 點
語法:
point(x, y) //平面坐標系
point(x, y, z) //空間坐標系
That’s the point!
###4.1.2 line 線
語法:
line(x1, y1, x2, y2) //x1,y1確定起點,x2,y2確定終點
line(x1, y1, z1, x2, y2, z2)
康定斯基指出:“在幾何學上,線是一個看不見的實體,它是點在移動中留下的軌跡。因而它是由運動產生的,的確它是破壞點最終的靜止狀態而產生的,線因此是與基本的繪畫元素一點相對的結果,嚴格地說,它可以稱作第二元素。”
即使看似雜亂的線條也能給我們帶來視覺和心靈的感受。
We were part of a long line of artists!
###4.1.3 rectangle 矩形
模式:
rectMode(CORNER); //矩形單角模式,指定左上角坐標
rectMode(CENTER); //矩形中心模式
rectMode(CORNERS); //矩形雙角模式,指定左上角和右下角坐標
語法:
rect(a, b, c, d) //普通矩形
rect(a, b, c, d, r) //圓角矩形
rect(a, b, c, d, tl, tr, br, bl) //不規則圓角矩形
參數:
a float: x-coordinate of the rectangle by default
b float: y-coordinate of the rectangle by default
c float: width of the rectangle by default
d float: height of the rectangle by default
r float: radii for all four corners
tl float: radius for top-left corner
tr float: radius for top-right corner
br float: radius for bottom-right corner
bl float: radius for bottom-left corner
He handed me a little rectangle of white paper .
###4.1.4 ellipse 橢圓
語法:
ellipse(a, b, c, d) //a,b確定圓心坐標;c,d決定橢圓寬、高
The Earth orbits in an ellipse.
###4.1.5 quadrangle 四邊形
語法:
quad(x1, y1, x2, y2, x3, y3, x4, y4) //四個點的坐標
Pythagoras tree:
###4.1.6 triangle 三角形
語法:
triangle(x1, y1, x2, y2, x3, y3) //三個頂點的坐標
The classic triangle of husband, wife and mistress.
###4.1.7 arc 圓弧
語法:
arc(a, b, c, d, start, stop)
//start, stop:起始弧度和終止弧度
A rainbow arced gracefully over the town.
###4.1.8 bezier 貝塞爾曲線
語法:
bezier(x1, y1, x2, y2, x3, y3, x4, y4)
bezier(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4)
A single two-dimensional Bezier spline is defined by four points-two end points and two control points.
##4.2 自定義圖形
###① 繪制直線邊框:
beginShape(); //開始繪制自定義圖形
vertex(x,y); //連接圖形的節點
endShape(); //繪制自定義圖形結束,另:endShape(CLOSE)表示閉合圖形
###② 繪制曲線邊框:
beginShape();
//圖形起始端點
vertex(x,y);
//cx1,cy1,cx2,cy2是曲線的兩個控制點的坐標。x,y是起始端點坐標
bezierVertex(cx1,cy1,cx2,cy2,x,y);
endShape();
##4.3 Do It Yourself
“為什么我們花了那么多時間長大,卻只是為了分離?”
深林人不知,明月來相照。
/**
* 卡通人物的繪制
* 出品:維度模態工作室
* 作者:Hewes
*/
//畫布大小
size(300,300);
//人物的繪制
strokeWeight(3);
ellipse(180,120,120,100);
//包子
line(100,100,125,140);
ellipse(100,100,60,50);
//眼睛的繪制
fill(0,0,0);
ellipse(158,105,15,15);
ellipse(210,115,15,15);
//繪制紅暈
fill(255,193,193);
stroke(255,193,193);
ellipse(140,108,17,17);
ellipse(210,135,17,17);
//嘴巴
fill(250,250,250);
stroke(0,0,0);
ellipse(175,120,15,20);
ellipse(188,122,15,20);
stroke(250,250,250);
ellipse(185,112,30,20);
//一些線條的繪制
stroke(0,0,0);
line(150,90,165,88);
line(215,98,222,108);
line(90,85,85,90);
line(95,85,95,90);
line(105,85,110,90);
line(60,93,50,90);
line(60,99,45,105);
line(60,108,53,115);
//桌台的繪制
fill(250,250,250);
stroke(0,0,0);
rect(20,140,260,40);
歡迎加我微信,期盼你與我一起進步。