当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing blue()用法及代码示例


Processing, blue()用法介绍。

用法

  • blue(rgb)

参数

  • rgb (int) 颜色数据类型的任何值

返回

  • float

说明

从颜色中提取蓝色值,缩放以匹配当前 colorMode() 。该值始终以浮点数形式返回,因此请注意不要将其分配给 int 值。



blue() 函数易于使用和理解,但它比称为位掩码的技术慢。在 colorMode(RGB, 255) 中工作时,您可以获得与 blue() 相同的结果,但通过使用位掩码去除其他颜色分量,速度更快。例如,以下两行代码是获取颜色值 c 的蓝色值的等效方法:



 float b1 = blue(c); // Simpler, but slower to calculate
 float b2 = c & 0xFF; // Very fast to calculate 

例子

size(400,400);
color c = color(175, 100, 220);  // Define color 'c'
fill(c);  // Use color variable 'c' as fill color
rect(60, 80, 140, 240);  // Draw left rectangle

float blueValue = blue(c);  // Get blue in 'c'
println(blueValue);  // Prints "220.0"
fill(0, 0, blueValue);  // Use 'blueValue' in new fill
rect(200, 80, 140, 240);  // Draw right rectangle
Image output for example 1

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 blue()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。