RGBAColor.times with float

This commit is contained in:
DBotThePony 2024-02-03 20:37:16 +07:00
parent af4b3dd726
commit e7c0a30d2d
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 5 additions and 1 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=1.7.0
projectVersion=1.7.1
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -168,6 +168,10 @@ class RGBAColor(red: Float, green: Float, blue: Float, alpha: Float = 1f) : IStr
return RGBAColor(red * other.red, green * other.green, blue * other.blue, alpha * other.alpha)
}
operator fun times(other: Float): RGBAColor {
return RGBAColor(red * other, green * other, blue * other, alpha)
}
@Suppress("unused")
companion object {
private val comparator = Comparator