Update coding style.
[master-thesis.git] / Parasitemia / ParasitemiaUI / Types.fs
index eb778d8..ada2a1f 100644 (file)
@@ -11,8 +11,8 @@ open Newtonsoft.Json
 
 open ParasitemiaCore.UnitsOfMeasure
 
-let healthyRBColor = Color.FromRgb(255uy, 255uy, 0uy) // Yellow-green.
-let infectedRBColor = Color.FromRgb(255uy, 0uy, 40uy) // Red with a bit of blue.
+let healthyRBColor = Color.FromRgb (255uy, 255uy, 0uy) // Yellow-green.
+let infectedRBColor = Color.FromRgb (255uy, 0uy, 40uy) // Red with a bit of blue.
 
 type RBC =
     {
@@ -46,12 +46,12 @@ type SourceImage =
         member this.HealthyRBCColor : SolidColorBrush =
             let mutable color = healthyRBColor * this.healthyRBCBrightness
             color.A <- 255uy
-            SolidColorBrush(color)
+            SolidColorBrush (color)
 
         member this.InfectedRBCColor : SolidColorBrush =
             let mutable color = infectedRBColor * this.infectedRBCBrightness
             color.A <- 255uy
-            SolidColorBrush(color)
+            SolidColorBrush (color)
 
 type PredefinedPPI =
     {
@@ -59,7 +59,7 @@ type PredefinedPPI =
         label : string
     }
     with
-        override this.ToString() =
+        override this.ToString () =
             sprintf "%s: %d" this.label this.ppi
 
 type SensorSize =