Uses of Class
omix.lang.Gradient.Spread
Package | Description |
---|---|
omix.lang |
This package contains types used in OVL.
|
-
Uses of Gradient.Spread in omix.lang
Methods in omix.lang that return Gradient.Spread Modifier and Type Method Description Gradient.Spread
Gradient. getSpread()
static Gradient.Spread
Gradient.Spread. valueOf(String name)
Returns the enum constant of this type with the specified name.static Gradient.Spread[]
Gradient.Spread. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in omix.lang with parameters of type Gradient.Spread Modifier and Type Method Description void
Gradient. setSpread(Gradient.Spread spread)
Changes the spread of the gradient.Constructors in omix.lang with parameters of type Gradient.Spread Constructor Description LinearGradient(Map<Double,Color> stops, Gradient.Spread spread)
Creates a gradient according to the submitted set of colors.LinearGradient(Color color0, Color color1, Gradient.Spread spread)
Creates a gradient between the two submitted colors.LinearGradient(Color color, Gradient.Spread spread)
The same as LinearGradient(color, color, spread)RadialGradient(Map<Double,Color> stops, Gradient.Spread spread)
Creates a gradient according to the submitted set of colors.RadialGradient(Color color0, Color color1, Gradient.Spread spread)
Creates a gradient between the two submitted colors.RadialGradient(Color color, Gradient.Spread spread)
The same as RadialGradient(color, color, spread)