Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created May 29, 2015 09:23
Show Gist options
  • Save z-------------/c8b3ed5aa7415e3e64e0 to your computer and use it in GitHub Desktop.
Save z-------------/c8b3ed5aa7415e3e64e0 to your computer and use it in GitHub Desktop.
var shrinkDimensions = function(a, b, m) {
if (a * b > m) {
var k = a/b; // a = bk , b = a/k
var A, B;
// let ab = m
// b^2 * k = m
// b^2 = m/k
B = Math.sqrt(m/k);
// a = bk
A = B * k;
return [A, B];
} else {
return [a, b];
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment