Uses of Class
de.xima.fc.common.graphdot.Color
-
Packages that use Color Package Description de.xima.fc.common.graphdot Package with tools for working with the graph dot language. -
-
Uses of Color in de.xima.fc.common.graphdot
Classes in de.xima.fc.common.graphdot with type parameters of type Color Modifier and Type Interface Description static interface
AttributeListBuilder.IMixinColor<A extends AttributeListBuilder.ITypedAttribute<Color>>
Mixin for attributes that accept a single color.Methods in de.xima.fc.common.graphdot that return Color Modifier and Type Method Description static Color
Color. custom(CharSequence color)
Creates a custom color.Color
WeighedColor. getColor()
static Color
Color. hsv(double hue, double saturation, double value)
Creates an HSV color.static Color
Color. hsv(long hsv)
Creates an HSV color.static Color
Color. hsv(long hue, long saturation, long value)
Creates an HSV color.static Color
Color. hsva(double hue, double saturation, double value, double alpha)
Creates an HSVA color.static Color
Color. hsva(long hsva)
Creates an HSVA color.static Color
Color. hsva(long hue, long saturation, long value, long alpha)
Creates an HSVA color.static Color
Color. rgb(double red, double green, double blue)
Creates an RGB color.static Color
Color. rgb(long rgb)
Creates an RGB color.static Color
Color. rgb(long red, long green, long blue)
Creates an RGB color.static Color
Color. rgba(double red, double green, double blue, double alpha)
Creates an RGBA color.static Color
Color. rgba(long rgba)
Creates an RGBA color.static Color
Color. rgba(long rgb, double alpha)
Creates a new color from the given RGB pair and with the given alpha value.static Color
Color. rgba(long red, long green, long blue, long alpha)
Creates an RGBA color.static Color
Color. svg(EColorSchemeSvg color)
Uses a color from the SVG color scheme.static Color
Color. x11(EColorSchemeX11 color)
Uses a color from the X11 color scheme.Methods in de.xima.fc.common.graphdot with parameters of type Color Modifier and Type Method Description static ColorList
ColorList. equidistant(Color... colors)
Creates a list of equidistant weighed colors.default A
AttributeListBuilder.IMixinColorList. multiple(Color... colors)
Uses a list of color, such as for linear or radial gradients.static ColorList
ColorList. multiple(Color... colors)
Creates a color list with the given colors.default A
AttributeListBuilder.IMixinColorList. one(Color color)
Uses single color only.static ColorList
ColorList. one(Color color)
Creates a color list with a single colors.default A
AttributeListBuilder.IMixinColorList. two(Color color1, Color color2)
Uses a list of color, such as for linear or radial gradients.static ColorList
ColorList. two(Color color1, Color color2)
Creates a color list with the given colors.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.Method parameters in de.xima.fc.common.graphdot with type arguments of type Color Modifier and Type Method Description static ColorList
ColorList. equidistant(Iterable<? extends Color> colors)
Creates a list of equidistant weighed colors from unweighed colors.default A
AttributeListBuilder.IMixinColorList. multiple(Iterable<? extends Color> colors)
Uses a list of color, such as for linear or radial gradients.static ColorList
ColorList. multiple(Iterable<? extends Color> colors)
Creates a color list with the given colors.static ColorList
ColorList. multiple(Iterator<? extends Color> colors)
Creates a color list with the given colors.Constructors in de.xima.fc.common.graphdot with parameters of type Color Constructor Description WeighedColor(Color color, Double weight)
Creates a new weighted color with the given weight.
-