Skip to content

Instantly share code, notes, and snippets.

@terkel
Created July 26, 2013 03:39
Show Gist options
  • Save terkel/6085966 to your computer and use it in GitHub Desktop.
Save terkel/6085966 to your computer and use it in GitHub Desktop.
function getWidthFromHeightAndAspectRatio (height, aspectRatio) {
return height * aspectRatio;
}
function getHeightFromWidthAndAspectRatio (width, aspectRatio) {
return width / aspectRatio;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment