getFilmWidth method

double getFilmWidth()

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);
}