All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.doeraene.webcomponents.ui5.scaladsl.colour.RGBAColour.scala Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
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