Add a logger assembly and split the main assembly in two : the UI and the parasitemia...
[master-thesis.git] / Parasitemia / Parasitemia / UnitsOfMeasure.fs
diff --git a/Parasitemia/Parasitemia/UnitsOfMeasure.fs b/Parasitemia/Parasitemia/UnitsOfMeasure.fs
deleted file mode 100644 (file)
index 6a3b745..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-module UnitsOfMeasure
-
-[<Measure>] type px
-[<Measure>] type μm
-[<Measure>] type inch
-[<Measure>] type ppi = px / inch
-
-let μmInchRatio = 25.4e3<μm/inch>
-
-let μmToInch(x: float<μm>) : float<inch> = x / μmInchRatio
-let inchToμm(x: float<inch>) : float<μm> = x * μmInchRatio
-
-
-
-
-