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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。