Beispiel #1
0
 public static TR_Error TR_TransformPoint(
     IntPtr TR,
     double x,
     double y,
     double z,
     out double x_o,
     out double y_o,
     out double z_o)
 {
     if (is64Bit)
     {
         return(PInvoke64Bit.TR_TransformPoint(TR, x, y, z, out x_o, out y_o, out z_o));
     }
     else
     {
         return(PInvoke32Bit.TR_TransformPoint(TR, x, y, z, out x_o, out y_o, out z_o));
     }
 }