Processing, triangle()
用法介紹。
用法
triangle(x1, y1, x2, y2, x3, y3)
參數
x1
(float)
第一個點的 x 坐標y1
(float)
第一個點的 y 坐標x2
(float)
第二個點的 x 坐標y2
(float)
第二個點的 y 坐標x3
(float)
第三個點的 x 坐標y3
(float)
第三個點的 y 坐標
返回
void
說明
三角形是通過連接三個點創建的平麵。前兩個參數指定第一個點,中間兩個參數指定第二個點,最後兩個參數指定第三個點。
例子
size(400, 400);
triangle(120, 300, 232, 80, 344, 300);
有關的
相關用法
- Processing trim()用法及代碼示例
- Processing true用法及代碼示例
- Processing try用法及代碼示例
- Processing translate()用法及代碼示例
- Processing texture()用法及代碼示例
- Processing thread()用法及代碼示例
- Processing textSize()用法及代碼示例
- Processing textureMode()用法及代碼示例
- Processing textLeading()用法及代碼示例
- Processing text()用法及代碼示例
- Processing textDescent()用法及代碼示例
- Processing this用法及代碼示例
- Processing textFont()用法及代碼示例
- Processing textAscent()用法及代碼示例
- Processing textAlign()用法及代碼示例
- Processing textMode()用法及代碼示例
- Processing textWidth()用法及代碼示例
- Processing tint()用法及代碼示例
- Processing tan()用法及代碼示例
- Processing textureWrap()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 triangle()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。