Processing, randomSeed()
用法介紹。
用法
randomSeed(seed)
參數
seed
(int)
種子值
返回
void
說明
設置 random()
的種子值。默認情況下,每次運行程序時,random()
都會產生不同的結果。將seed
參數設置為常數,以在每次運行軟件時返回相同的偽隨機數。
例子
randomSeed(0);
for (int i=0; i < 100; i++) {
float r = random(0, 255);
stroke(r);
line(i, 0, i, 100);
}
相關用法
- Processing randomGaussian()用法及代碼示例
- Processing random()用法及代碼示例
- Processing radians()用法及代碼示例
- Processing rect()用法及代碼示例
- Processing rotateX()用法及代碼示例
- Processing resetMatrix()用法及代碼示例
- Processing rectMode()用法及代碼示例
- Processing round()用法及代碼示例
- Processing redraw()用法及代碼示例
- Processing reverse()用法及代碼示例
- Processing rotate()用法及代碼示例
- Processing rotateZ()用法及代碼示例
- Processing red()用法及代碼示例
- Processing requestImage()用法及代碼示例
- Processing rotateY()用法及代碼示例
- Processing return用法及代碼示例
- Processing resetShader()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
- Processing () (parentheses)用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 randomSeed()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。