Processing, sq()
用法介紹。
用法
sq(n)
參數
n
(float)
平方數
返回
float
說明
將數字平方(將數字乘以自身)。結果總是一個正數,因為兩個負數相乘總是產生一個正數。例如,-1 * -1 = 1.
例子
size(400, 400);
noStroke();
float a = sq(4); // Sets 'a' to 16
float b = sq(-10); // Sets 'b' to 100
float c = sq(18); // Sets 'c' to 324
rect(0, 100, a, 40);
rect(0, 180, b, 40);
rect(0, 260, c, 40);
有關的
相關用法
- Processing sqrt()用法及代碼示例
- Processing square()用法及代碼示例
- Processing scale()用法及代碼示例
- Processing splice()用法及代碼示例
- Processing super用法及代碼示例
- Processing subset()用法及代碼示例
- Processing saveJSONArray()用法及代碼示例
- Processing strokeJoin()用法及代碼示例
- Processing saveXML()用法及代碼示例
- Processing switch用法及代碼示例
- Processing serverEvent()用法及代碼示例
- Processing save()用法及代碼示例
- Processing saveStrings()用法及代碼示例
- Processing saveTable()用法及代碼示例
- Processing shorten()用法及代碼示例
- Processing saturation()用法及代碼示例
- Processing settings()用法及代碼示例
- Processing spotLight()用法及代碼示例
- Processing setLocation()用法及代碼示例
- Processing splitTokens()用法及代碼示例
- Processing setResizable()用法及代碼示例
- Processing specular()用法及代碼示例
- Processing sphere()用法及代碼示例
- Processing setup()用法及代碼示例
- Processing shape()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 sq()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。