Skip to content

Instantly share code, notes, and snippets.

@grefel
Last active August 29, 2015 14:03
Show Gist options
  • Save grefel/d2245fdc4d094a6be643 to your computer and use it in GitHub Desktop.
Save grefel/d2245fdc4d094a6be643 to your computer and use it in GitHub Desktop.
Point to Millimeter conversion for #InDesign calculation
function pt2mm(numberInPt) {
return ( numberInPt * 25.4 ) / 72;
}
function mm2pt(numberInMm) {
return ( numberInMm * 72 ) / 25.4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment