mirror of https://github.com/adamdruppe/arsd.git
Refactor rgba(ubyte,ubyte,ubyte,float)
This commit is contained in:
parent
c4485e3f88
commit
b9098844b1
|
@ -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));
|
||||
}
|
||||
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue