fixed Fomapan reciprocity

This commit is contained in:
Vadim 2023-04-05 21:58:33 +03:00
parent 810bfc3ff3
commit 34aceb9411

View file

@ -124,6 +124,9 @@ class FomapanFilm extends Film {
b = 5.75, b = 5.75,
c = 1.5, c = 1.5,
super('Fomapan ACTION 400', 400); super('Fomapan ACTION 400', 400);
@override
double reciprocityFormula(double t) => t * log10polynomian(t, a, b, c);
} }
class IlfordFilm extends Film { class IlfordFilm extends Film {