Пример #1
0
 /**
  * Coordinates and pitch/yaw, no extras.
  *
  * @param from
  * @param to
  * @return
  */
 public static String formatMove(Location from, Location to) {
   StringBuilder builder = new StringBuilder(128);
   DebugUtil.addMove(from, to, null, builder);
   return builder.toString();
 }