Cs class

Represents different levels of Chroma (color intensity). All values are typically non-negative. C_0: Minimum chroma C_mid: Middle chroma C_max: Maximum chroma Example usage: Cs cs = getCs(L, a_, b_); // Different chroma levels are used in interpolation: double C = k_0 + t * k_1 / (1 - k_2 * t); // where k_0, k_1, k_2 are derived from cs.C_0, cs.C_mid, and cs.C_max

Constructors

Cs(double C_0, double C_mid, double C_max)

Properties

C_0 double
getter/setter pair
C_max double
getter/setter pair
C_mid double
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited