This commit is contained in:
Brooke Vibber 2024-09-12 16:54:36 -07:00
parent 34aa4f55b6
commit c176d20603

View file

@ -102,7 +102,7 @@ class RGB {
let b = y - 1.107 * i + 1.704 * q;
*/
return new RGB(r, g, b).clamp().fromSRGB();
return new RGB(r, g, b).clamp().fromNTSC();
}
map(callback) {