Processing, red()
用法介绍。
用法
red(rgb)
参数
rgb
(int)
颜色数据类型的任何值
返回
float
说明
从颜色中提取红色值,缩放以匹配当前 colorMode()
。该值始终以浮点数形式返回,因此请注意不要将其分配给 int 值。
red()
函数易于使用和理解,但它比一种称为位移的技术慢。在 colorMode(RGB,
255)
中工作时,您可以通过使用带有位掩码的右移位运算符 (>>
) 获得与 red()
相同的结果,但速度更快。例如,以下两行代码是获取颜色值c
的红色值的等效方法:
float r1 = red(c); // Simpler, but slower to calculate float r2 = c >> 16 & 0xFF; // Very fast to calculate
例子
size(400, 400);
color c = color(255, 204, 0); // Define color 'c'
fill(c); // Use color variable 'c' as fill color
rect(60, 80, 140, 240); // Draw left rectangle
float redValue = red(c); // Get red in 'c'
println(redValue); // Print "255.0"
fill(redValue, 0, 0); // Use 'redValue' in new fill
rect(200, 80, 140, 240); // Draw right rectangle
相关用法
- Processing redraw()用法及代码示例
- Processing rect()用法及代码示例
- Processing resetMatrix()用法及代码示例
- Processing rectMode()用法及代码示例
- Processing reverse()用法及代码示例
- Processing requestImage()用法及代码示例
- Processing return用法及代码示例
- Processing resetShader()用法及代码示例
- Processing randomGaussian()用法及代码示例
- Processing rotateX()用法及代码示例
- Processing round()用法及代码示例
- Processing rotate()用法及代码示例
- Processing rotateZ()用法及代码示例
- Processing rotateY()用法及代码示例
- Processing radians()用法及代码示例
- Processing random()用法及代码示例
- Processing randomSeed()用法及代码示例
- Processing FFT用法及代码示例
- Processing SawOsc.pan()用法及代码示例
- Processing FloatDict用法及代码示例
- Processing FFT.stop()用法及代码示例
- Processing join()用法及代码示例
- Processing () (parentheses)用法及代码示例
- Processing Pulse用法及代码示例
- Processing PShader用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 red()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。