Processing, round()
用法介紹。
用法
round(n)
參數
n
(float)
要四舍五入的數字
返回
int
說明
計算最接近 n
參數的整數。例如,round(133.8)
返回值 134。
例子
float x = 9.2;
int rx = round(x); // Sets 'rx' to 9
float y = 9.5;
int ry = round(y); // Sets 'ry' to 10
float z = 9.9;
int rz = round(z); // Sets 'rz' to 10
相關用法
- Processing rotateX()用法及代碼示例
- Processing rotate()用法及代碼示例
- Processing rotateZ()用法及代碼示例
- Processing rotateY()用法及代碼示例
- Processing rect()用法及代碼示例
- Processing randomGaussian()用法及代碼示例
- Processing resetMatrix()用法及代碼示例
- Processing rectMode()用法及代碼示例
- Processing redraw()用法及代碼示例
- Processing reverse()用法及代碼示例
- Processing red()用法及代碼示例
- Processing requestImage()用法及代碼示例
- Processing return用法及代碼示例
- Processing radians()用法及代碼示例
- Processing random()用法及代碼示例
- Processing resetShader()用法及代碼示例
- Processing randomSeed()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
- Processing () (parentheses)用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 round()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。