getFilmHeight method

double getFilmHeight()

Returns the height of the image on the film. If .aspect is less than or equal to one (portrait format), the result equals .filmGauge.

Implementation

/// equal to one (portrait format), the result equals .filmGauge.
double getFilmHeight() {
  return filmGauge / math.max(aspect, 1);
}