* Remove the 'DoG' filter.
[master-thesis.git] / Parasitemia / Parasitemia / Types.fs
index a551142..634a7b7 100644 (file)
@@ -37,6 +37,9 @@ type Ellipse (cx: float, cy: float, a: float, b: float, alpha: float) =
     member this.Perimeter =
         Math.PI * (3.0 * (this.A + this.B) - sqrt ((3.0 * this.A + this.B) * (this.A + 3.0 * this.B)))
 
+    override this.ToString () =
+        sprintf "(cx: %A, cy: %A, a: %A, b: %A, alpha: %A)" this.Cx this.Cy this.A this.B this.Alpha
+
 
 type CellClass = HealthyRBC | InfectedRBC | Peculiar