首页 > 文档 > saturation()颜色的饱和度值
2017
08-08

saturation()颜色的饱和度值

Name

saturation()颜色的饱和度值

   

Examples

saturation()颜色的饱和度值 - 第1张  | Processing编程艺术saturation()颜色的饱和度值 - 第2张  | Processing编程艺术saturation()颜色的饱和度值 - 第3张  | Processing编程艺术

noStroke();

colorMode(HSB, 255);

color c = color(0, 126, 255);

fill(c);

rect(15, 20, 35, 60);

float value = saturation(c); // Sets ‘value’ to 126

fill(value);

rect(50, 20, 35, 60);

Description

Extracts the saturation value from a color.

从颜色中提取饱和度值。

Syntax

saturation(rgb)

Parameters

rgb

int: any value of the color datatype

 

颜色数据类型的任何值

Returns

float

Related

red()
green()
blue()
alpha()
hue()
brightness()



最后编辑:
作者:卡萨布兰卡
这个作者貌似有点懒,什么都没有留下。

留下一个回复

你的email不会被公开。