focal-length
Version:
Focal length calculator for various crop factors.
12 lines (9 loc) • 362 B
JavaScript
const index = require('./index');
const FOCAL_LENGTH = 35;
const CROP_FACTOR = 1.5
const NEW_FOCAL_LENGTH = FOCAL_LENGTH * CROP_FACTOR;
test(
`calculates effective focal length by multiplying crop factor (${CROP_FACTOR} by focal length (${FOCAL_LENGTH}))`,
() => {
expect(index.calcNewFocalLength(CROP_FACTOR, FOCAL_LENGTH)).toBe(NEW_FOCAL_LENGTH);
});