Uses of Class
de.xima.fc.common.graphdot.WeighedColor
-
Packages that use WeighedColor Package Description de.xima.fc.common.graphdot Package with tools for working with the graph dot language. -
-
Uses of WeighedColor in de.xima.fc.common.graphdot
Methods in de.xima.fc.common.graphdot that return WeighedColor Modifier and Type Method Description static WeighedColor
WeighedColor. unweighed(Color color)
Creates new color with no weight.static WeighedColor
WeighedColor. weighed(Color color, double weight)
Creates new color with the given weight.Methods in de.xima.fc.common.graphdot with parameters of type WeighedColor Modifier and Type Method Description static ColorList
ColorList. multipleWeighed(WeighedColor... colors)
Creates a color list with the given colors.static ColorList
ColorList. oneWeighed(WeighedColor color)
Creates a color list with a single colors.static ColorList
ColorList. twoWeighed(WeighedColor color1, WeighedColor color2)
Creates a color list with the given colors.Method parameters in de.xima.fc.common.graphdot with type arguments of type WeighedColor Modifier and Type Method Description static ColorList
ColorList. multipleWeighed(Iterable<? extends WeighedColor> colors)
Creates a color list with the given colors.static ColorList
ColorList. multipleWeighed(Iterator<? extends WeighedColor> colors)
Creates a color list with the given colors.Constructor parameters in de.xima.fc.common.graphdot with type arguments of type WeighedColor Constructor Description ColorList(List<WeighedColor> colors)
Creates a new list of colors.
-