Skip to content

Instantly share code, notes, and snippets.

@NodarDavituri
Created December 3, 2012 12:11
Show Gist options
  • Save NodarDavituri/4194626 to your computer and use it in GitHub Desktop.
Save NodarDavituri/4194626 to your computer and use it in GitHub Desktop.
// წრფივი შემთხვევა
$weight = ($currentTagUses - $minUses) / ($maxUses - $minUses);
$fontSize = $minFontSize + round(($maxFontSize - $minFontSize)*$weight, 2);
// ლოგარითმული შემთხვევა
$weight = (log($currentTagUses) - log($minUses)) / (log($maxUses) - log($minUses));
$fontSize = $minFontSize + round(($maxFontSize - $minFontSize)*$weight, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment