Uses of Class
toxi.color.ColorList

Packages that use ColorList
toxi.color   
toxi.color.theory   
 

Uses of ColorList in toxi.color
 

Fields in toxi.color declared as ColorList
 ColorList ToneMap.colors
           
 

Methods in toxi.color that return ColorList
 ColorList ColorList.add(ReadonlyTColor c)
          Adds the given color to the list
 ColorList ColorList.addAll(java.util.Collection<TColor> collection)
          Adds all entries of the TColor collection to the list (shallow copy only, manipulating the new list will modify the original colors).
 ColorList ColorList.adjustBrightness(float step)
          Adjusts the brightness component of all list colors by the given amount.
 ColorList ColorList.adjustSaturation(float step)
          Adjusts the saturation component of all list colors by the given amount.
 ColorList ColorGradient.calcGradient()
           
 ColorList ColorGradient.calcGradient(float pos, int width)
          Calculates the gradient from specified position.
 ColorList ColorList.clusterSort(AccessCriteria clusterCriteria, AccessCriteria subClusterCriteria, int numClusters, boolean isReversed)
          Sorts the list based on two criteria to create clusters/segments within the list.
 ColorList ColorList.complement()
          Switches all list colors to their complementary color.
static ColorList ColorList.createFromARGBArray(int[] pixels, int num, boolean uniqueOnly)
          Factory method.
static ColorList ColorList.createFromARGBArray(int[] pixels, int num, boolean uniqueOnly, int maxIterations)
          Factory method.
static ColorList ColorList.createUsingStrategy(ColorTheoryStrategy strategy, TColor c)
          Factory method.
static ColorList ColorList.createUsingStrategy(java.lang.String name, TColor c)
          Factory method.
 ColorList ColorList.getBlended(float amount)
          Creates a new ColorList by blending all colors in the list with each other (successive indices only)
 ColorList ColorTheme.getColors(int num)
          Creates a ColorList of TColors based on the theme's ranges and balance defined by their weights
 ColorList ColorRange.getColors(int num)
          Creates a new ColorList of colors based on the constraints of this range.
 ColorList ColorRange.getColors(ReadonlyTColor c, int num, float variance)
          Creates a new ColorList of shades of the given TColor based on the other constraints of the range.
 ColorList Histogram.getPalette()
           
 ColorList ColorList.getReverse()
          Returns a reversed copy of the current list.
 ColorList ColorList.invert()
          Inverts all colors in the list.
 ColorList ColorList.reverse()
          Reverses the current order of the list.
 ColorList ColorList.rotateRYB(float theta)
          Rotates the hues of all colors in the list by the given amount.
 ColorList ColorList.rotateRYB(int angle)
          Rotates the hues of all colors in the list by the given amount.
 ColorList ColorList.sort()
          Convenience method.
 ColorList ColorList.sortByComparator(java.util.Comparator<ReadonlyTColor> comp, boolean isReversed)
          Sorts the list using the given comparator.
 ColorList ColorList.sortByCriteria(AccessCriteria criteria, boolean isReversed)
          Sorts the list using the given AccessCriteria.
 ColorList ColorList.sortByDistance(boolean isReversed)
          Sorts the list by relative distance to each predecessor, starting with the darkest color in the list.
 ColorList ColorList.sortByDistance(DistanceProxy proxy, boolean isReversed)
          Sorts the list by relative distance to each predecessor, starting with the darkest color in the list.
 ColorList ColorList.sortByProximityTo(ReadonlyTColor target, boolean isReversed)
          Sorts the list by proximity to the given target color (using RGB distance metrics).
 ColorList ColorList.sortByProximityTo(ReadonlyTColor target, DistanceProxy proxy, boolean isReversed)
          Sorts the list by proximity to the given target color using the given DistanceProxy implementation.
 

Methods in toxi.color with parameters of type ColorList
 void Histogram.setPalette(ColorList palette)
           
 

Constructors in toxi.color with parameters of type ColorList
ColorList(ColorList list)
          Creates a deep copy of the given ColorList.
ColorRange(ColorList list)
          Constructs a new range using the given colors as HSV constraints.
Histogram(ColorList palette)
           
ToneMap(float min, float max, ColorList c)
           
 

Uses of ColorList in toxi.color.theory
 

Methods in toxi.color.theory that return ColorList
 ColorList TriadTheoryStrategy.createListFromColor(ReadonlyTColor src)
           
 ColorList TetradTheoryStrategy.createListFromColor(ReadonlyTColor src)
           
 ColorList SplitComplementaryStrategy.createListFromColor(ReadonlyTColor src)
           
 ColorList SingleComplementStrategy.createListFromColor(ReadonlyTColor src)
           
 ColorList RightSplitComplementaryStrategy.createListFromColor(ReadonlyTColor src)
           
 ColorList MonochromeTheoryStrategy.createListFromColor(ReadonlyTColor src)
           
 ColorList LeftSplitComplementaryStrategy.createListFromColor(ReadonlyTColor src)
           
 ColorList CompoundTheoryStrategy.createListFromColor(ReadonlyTColor src)
           
 ColorList ComplementaryStrategy.createListFromColor(ReadonlyTColor src)
           
 ColorList ColorTheoryStrategy.createListFromColor(ReadonlyTColor src)
          Creates a new ColorList of colors for the supplied source color based on the strategy.
 ColorList AnalogousStrategy.createListFromColor(ReadonlyTColor src)