be.doeraene.webcomponents.ui5.scaladsl.colour.RGBAColour.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-components-ui5_sjs1_3 Show documentation
Show all versions of web-components-ui5_sjs1_3 Show documentation
Laminar bindings for the web-component library UI5 from SAP
package be.doeraene.webcomponents.ui5.scaladsl.colour
final case class RGBAColour(red: Int, green: Int, blue: Int, alpha: Double) extends Colour {
def withoutAlpha: RGBColour = RGBColour(red, green, blue)
def withAlpha(newAlpha: Double): RGBAColour = copy(alpha = newAlpha)
def asRGBAColour: RGBAColour = this
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy