mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
Fixed incorrect ISO for some films
This commit is contained in:
parent
d346e706ff
commit
d3512faa9b
1 changed files with 2 additions and 2 deletions
|
@ -116,7 +116,7 @@ class FomapanFilm extends Film {
|
||||||
: a = 1.5,
|
: a = 1.5,
|
||||||
b = 4.5,
|
b = 4.5,
|
||||||
c = 3,
|
c = 3,
|
||||||
super('Fomapan CREATIVE 200', 400);
|
super('Fomapan CREATIVE 200', 200);
|
||||||
|
|
||||||
/// https://www.foma.cz/en/fomapan-100
|
/// https://www.foma.cz/en/fomapan-100
|
||||||
const FomapanFilm.action400()
|
const FomapanFilm.action400()
|
||||||
|
@ -185,7 +185,7 @@ class IlfordFilm extends Film {
|
||||||
/// https://www.ilfordphoto.com/amfile/file/download/file/1959/product/697/
|
/// https://www.ilfordphoto.com/amfile/file/download/file/1959/product/697/
|
||||||
const IlfordFilm.pan400()
|
const IlfordFilm.pan400()
|
||||||
: reciprocityPower = 1.30,
|
: reciprocityPower = 1.30,
|
||||||
super('Kentemere 400', 100);
|
super('Kentemere 400', 400);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
double reciprocityFormula(double t) => pow(t, reciprocityPower).toDouble();
|
double reciprocityFormula(double t) => pow(t, reciprocityPower).toDouble();
|
||||||
|
|
Loading…
Reference in a new issue