import java.io.*; import java.util.*; public class Translate { public static void main(String[] args) throws IOException { // read in the customers as points Scanner sc = new Scanner(new File(args[0])); int noCustomers = sc.nextInt(); Point[] customer = new Point[noCustomers]; int xMin = Integer.MAX_VALUE; int xMax = Integer.MIN_VALUE; int yMin = Integer.MAX_VALUE; int yMax = Integer.MIN_VALUE; double pointSize = 2.0; int k = 0; for (int i=0;i