Package-level declarations
Types
Link copied to clipboard
open class ConicGradient<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(colorType: KClass<C>, center: Vector2 = Vector2(0.5, 0.5), rotation: Double = 0.0, angle: Double = 0.0, startAngle: Double = 0.0, colors: Array<Vector4>, points: Array<Double> = Array(colors.size) { it / (colors.size - 1.0) }, structure: GradientBaseStructure) : GradientBase<C>
Link copied to clipboard
class ConicGradientBuilder<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(gradientBuilder: GradientBuilder<C>) : GradientShadeStyleBuilder<C>
Link copied to clipboard
class EllipticalGradient<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(colorType: KClass<C>, center: Vector2 = Vector2(0.5, 0.5), radiusX: Double = 1.0, radiusY: Double = 1.0, rotation: Double = 0.0, colors: Array<Vector4>, points: Array<Double> = Array(colors.size) { it / (colors.size - 1.0) }, structure: GradientBaseStructure) : GradientBase<C>
Link copied to clipboard
class EllipticalGradientBuilder<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(gradientBuilder: GradientBuilder<C>) : GradientShadeStyleBuilder<C>
Link copied to clipboard
open class GradientBase<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(colorType: KClass<C>, colors: Array<Vector4>, points: Array<Double> = Array(colors.size) { it / (colors.size - 1.0) }, structure: GradientBaseStructure) : ShadeStyle
Link copied to clipboard
class GradientBaseStructure(val gradientFunction: String, val domainWarpFunction: String, val levelWarpFunction: String)
Link copied to clipboard
class GradientBuilder<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(val colorType: KClass<C>) : StyleParameters
Link copied to clipboard
sealed interface GradientShadeStyleBuilder<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>
Link copied to clipboard
open class LinearGradient<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(colorType: KClass<C>, start: Vector2 = Vector2.ZERO, end: Vector2 = Vector2.ONE, colors: Array<Vector4>, points: Array<Double> = Array(colors.size) { it / (colors.size - 1.0) }, structure: GradientBaseStructure) : GradientBase<C>
Link copied to clipboard
class LinearGradientBuilder<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(gradientBuilder: GradientBuilder<C>) : GradientShadeStyleBuilder<C>
Link copied to clipboard
open class LumaGradient<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(colorType: KClass<C>, minLevel: Double, maxLevel: Double, colors: Array<Vector4>, points: Array<Double> = Array(colors.size) { it / (colors.size - 1.0) }, structure: GradientBaseStructure) : GradientBase<C>
Link copied to clipboard
class LumaGradientBuilder<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(gradientBuilder: GradientBuilder<C>) : GradientShadeStyleBuilder<C>
Link copied to clipboard
open class RadialGradient<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(colorType: KClass<C>, center: Vector2 = Vector2(0.5, 0.5), focalCenter: Vector2 = center, radius: Double = 1.0, focalRadius: Double = radius, colors: Array<Vector4>, points: Array<Double> = Array(colors.size) { it / (colors.size - 1.0) }, structure: GradientBaseStructure) : GradientBase<C>
Link copied to clipboard
class RadialGradientBuilder<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(gradientBuilder: GradientBuilder<C>) : GradientShadeStyleBuilder<C>
Link copied to clipboard
open class StellarGradient<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(colorType: KClass<C>, center: Vector2 = Vector2(0.5, 0.5), radius: Double = 1.0, sharpness: Double = 0.5, rotation: Double = 0.0, sides: Int = 3, colors: Array<Vector4>, points: Array<Double> = Array(colors.size) { it / (colors.size - 1.0) }, structure: GradientBaseStructure) : GradientBase<C>
Link copied to clipboard
class StellarGradientBuilder<C : ConvertibleToColorRGBa, AlgebraicColor<C>, CastableToVector4>(gradientBuilder: GradientBuilder<C>) : GradientShadeStyleBuilder<C>