Processing, if
用法介紹。
用法
if (test) {
statements
}
參數
test
任何計算結果為真或假的有效表達式statements
一個或多個要執行的語句
說明
允許程序決定執行哪些代碼。如果 test
評估為 true
,則執行包含在塊中的語句,如果 test
評估為 false
則不執行語句。
例子
for (int i = 5; i < height; i += 5) {
stroke(255); // Set the color to white
if (i < 35) { // When 'i' is less than 35...
stroke(0); //...set the color to black
}
line(30, i, 80, i);
}
有關的
相關用法
- Processing imageMode()用法及代碼示例
- Processing int用法及代碼示例
- Processing image()用法及代碼示例
- Processing import用法及代碼示例
- Processing implements用法及代碼示例
- Processing int()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
- Processing () (parentheses)用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
- Processing PVector.set()用法及代碼示例
- Processing FloatDict.sortKeysReverse()用法及代碼示例
- Processing texture()用法及代碼示例
- Processing IntDict.add()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
- Processing FloatDict.sub()用法及代碼示例
- Processing String用法及代碼示例
- Processing PImage.pixels[]用法及代碼示例
- Processing vertex()用法及代碼示例
- Processing PVector.mag()用法及代碼示例
- Processing thread()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 if。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。