public static Pt ToPt(this Emu emu)
 {
     return(new Pt(emu.Value / 12700));
 }
 public static Pixel ToPixel(this Emu emu)
 {
     return(new Pixel(emu.Value / 914400 * DefaultDpi));
 }
 public static Mm ToMm(this Emu emu)
 {
     return(new Mm(emu.Value / 36000));
 }
 public static Dxa ToDxa(this Emu emu)
 {
     return(new Dxa(emu.Value / 635));
 }
 public static Cm ToCm(this Emu emu)
 {
     return(new Cm(emu.Value / 360000));
 }
 public static Inch ToInch(this Emu emu)
 {
     return(new Inch(emu.Value / 914400));
 }