/// <summary>
 /// Computes the distance to origin (0,0)
 /// </summary>
 public static float Length(this PointF self) => (float)Math.Sqrt(self.LengthSquared());