UNPKG

focal-length

Version:

Focal length calculator for various crop factors.

7 lines (6 loc) 191 B
/* Calculates focal length given the crop factor of camera and focal length of lens */ exports.calcNewFocalLength = function(cropFactor, focalLength) { return cropFactor * focalLength; }