81ce51f28901c1283f56f76c1d7008e2e8d0e78d
1
module ParasitemiaCore.UnitsOfMeasure
6 [<Measure>] type ppi = px / inch
8 let μmInchRatio
= 25.4e3<μm
/inch>
10 let μmToInch
(x
: float<μm
>) : float<inch> = x
/ μmInchRatio
11 let inchToμm
(x
: float<inch>) : float<μm
> = x
* μmInchRatio