Skip to content

Instantly share code, notes, and snippets.

@jinan-kordab
Created November 5, 2018 01:45
Show Gist options
  • Save jinan-kordab/6b586ce743ef64156749f6c48f761d16 to your computer and use it in GitHub Desktop.
Save jinan-kordab/6b586ce743ef64156749f6c48f761d16 to your computer and use it in GitHub Desktop.
Phi golden ratio JavaScript
function computeGoldenRatio(widthOrHeight) {
if (!widthOrHeight) {
return {};
}
return {
width: widthOrHeight,
right: Math.round(widthOrHeight/ 1.61803),
total: Math.round(widthOrHeight* 1.61803),
left: widthOrHeight- Math.round(widthOrHeight/ 1.61803)
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment