getFilmWidth method
Returns the width of the image on the film. If .aspect is greater than or equal to one (landscape format), the result equals .filmGauge.
Implementation
double getFilmWidth() {
return filmGauge * math.min(aspect, 1);
}
Returns the width of the image on the film. If .aspect is greater than or equal to one (landscape format), the result equals .filmGauge.
double getFilmWidth() {
return filmGauge * math.min(aspect, 1);
}