Refactor rgba(ubyte,ubyte,ubyte,float)

This commit is contained in:
Elias Batek 2024-10-13 19:15:03 +02:00
parent c4485e3f88
commit b9098844b1
1 changed files with 2 additions and 3 deletions

View File

@ -364,9 +364,8 @@ static assert(Pixel.sizeof == uint.sizeof);
}
///
Pixel rgba(ubyte r, ubyte g, ubyte b, float aPct)
in (aPct >= 0 && aPct <= 1) {
return Pixel(r, g, b, castTo!ubyte(aPct * 255));
Pixel rgba(ubyte r, ubyte g, ubyte b, float aPct) {
return Pixel(r, g, b, percentageDecimalToUInt8(aPct));
}
///