Uses of Class
org.pushingpixels.ephemeral.chroma.hct.Hct
-
Packages that use Hct Package Description org.pushingpixels.ephemeral.chroma.dynamiccolor org.pushingpixels.ephemeral.chroma.hct org.pushingpixels.ephemeral.chroma.palettes -
-
Uses of Hct in org.pushingpixels.ephemeral.chroma.dynamiccolor
Fields in org.pushingpixels.ephemeral.chroma.dynamiccolor with type parameters of type Hct Modifier and Type Field Description private java.util.HashMap<DynamicBimodalPalette,Hct>
DynamicBimodalPaletteColor. hctCache
private java.util.HashMap<DynamicPalette,Hct>
DynamicPaletteColor. hctCache
Methods in org.pushingpixels.ephemeral.chroma.dynamiccolor that return Hct Modifier and Type Method Description Hct
DynamicBimodalPaletteColor. getHct(DynamicBimodalPalette palette)
Returns an HCT object.Hct
DynamicPalette. getHct(DynamicPaletteColor dynamicPaletteColor)
Hct
DynamicPaletteColor. getHct(DynamicPalette palette)
Returns an HCT object.Constructors in org.pushingpixels.ephemeral.chroma.dynamiccolor with parameters of type Hct Constructor Description DynamicBimodalPalette(Hct seedOne, Hct seedTwo, DynamicBimodalPalette.TransitionRange transitionRange, double fidelityTone, ContainerConfiguration containerConfiguration)
DynamicPalette(Hct sourceColorHct, ContainerConfiguration containerConfiguration)
-
Uses of Hct in org.pushingpixels.ephemeral.chroma.hct
Methods in org.pushingpixels.ephemeral.chroma.hct that return Hct Modifier and Type Method Description static Hct
Hct. from(double hue, double chroma, double tone)
Create an HCT color from hue, chroma, and tone.static Hct
Hct. fromInt(int argb)
Create an HCT color from a color.Hct
Hct. inViewingConditions(ViewingConditions vc)
Translate a color into different ViewingConditions. -
Uses of Hct in org.pushingpixels.ephemeral.chroma.palettes
Fields in org.pushingpixels.ephemeral.chroma.palettes declared as Hct Modifier and Type Field Description private Hct
TonalPalette. keyColor
Methods in org.pushingpixels.ephemeral.chroma.palettes that return Hct Modifier and Type Method Description Hct
TonalPalette.KeyColor. create()
Creates a key color from a [hue] and a [chroma].Hct
BaseTonalPalette. getHct(double tone)
Given a tone, return the HCT color that corresponds to it in this palette.Hct
BimodalTonalPalette. getHct(double tone)
Given a tone, use hue and chroma of palette to create a color, and return it as HCT.Hct
ColorBlindTonalPalette. getHct(double tone)
Given a tone, use hue and chroma of palette to create a color, and return it as HCT.Hct
TonalPalette. getHct(double tone)
Given a tone, use hue and chroma of palette to create a color, and return it as HCT.Hct
TonalPalette. getKeyColor()
The key color is the first tone, starting from T50, that matches the palette's chroma.Methods in org.pushingpixels.ephemeral.chroma.palettes with parameters of type Hct Modifier and Type Method Description static BimodalTonalPalette
BimodalTonalPalette. from(Hct hct1, Hct hct2, BimodalTonalPalette.TransitionRange transitionRange)
static TonalPalette
TonalPalette. fromHct(Hct hct)
Create tones using a HCT color.Constructors in org.pushingpixels.ephemeral.chroma.palettes with parameters of type Hct Constructor Description TonalPalette(double hue, double chroma, Hct keyColor)
-