LC class

Represents Lightness and Chroma. L: Lightness, typically in range 0, 1 C: Chroma, can exceed 1 for highly saturated colors Example usage: LC cusp = findCusp(a_, b_); // L and C are used in calculations: double L_0 = cusp.L + 0.5 * (sgn(Ld) * (e1 - math.sqrt(e1 * e1 - 2 * k * math.abs(Ld))));

Constructors

LC(double L, double C)

Properties

C double
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
L double
getter/setter pair
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