Last active
August 29, 2015 14:03
-
-
Save grefel/d2245fdc4d094a6be643 to your computer and use it in GitHub Desktop.
Point to Millimeter conversion for #InDesign calculation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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