HueInterpolationMethod enum
The method by which two hues are adjusted when interpolating between colors.
Used by InterpolationMethod.
Values
- shorter → const HueInterpolationMethod
-
Angles are adjusted so that
θ₂ - θ₁ ∈ [-180, 180]
. - longer → const HueInterpolationMethod
-
Angles are adjusted so that
θ₂ - θ₁ ∈ {0, [180, 360)}
. - increasing → const HueInterpolationMethod
-
Angles are adjusted so that
θ₂ - θ₁ ∈ [0, 360)
. - decreasing → const HueInterpolationMethod
-
Angles are adjusted so that
θ₂ - θ₁ ∈ (-360, 0]
.
Properties
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
Constants
-
values
→ const List<
HueInterpolationMethod> - A constant List of the values in this enum, in order of their declaration.