三角形はtriangle関数で描く
processingでは、三角形をtriangle関数で描くことができます。
triangle(x1, y1, x2, y2, x3, y3)
各パラメータは次のようになっています。
- x1 (float) 三角形の1つ目の頂点のx座標
- y1 (float) 三角形の1つ目の頂点のy座標
- x2 (float) 三角形の2つ目の頂点のx座標
- y2 (float) 三角形の2つ目の頂点のy座標
- x3 (float) 三角形の3つ目の頂点のx座標
- y3 (float) 三角形の3つ目の頂点のy座標
以下に、triangle関数を用いて三角形を描く例を示します。
void setup(){
size(400,400);
fill(128,128,128);
triangle(200,100,100,300,300,300);
}