// test_datread.java tests datread.java Utah Graphics 3D file public class test_datread { double xmin, xmax, ymin, ymax, zmin, zmax; public test_datread(String filename) { int pts, pt, k; System.out.println("test_datread.java reading "+filename); datread DR = new datread(filename); // defines data structures System.out.println("num_points="+DR.num_points+ ", num_polys="+DR.num_polys); for(int i=0; i=1) filename = new String(args[0]); System.out.println("reading "+filename); new test_datread(filename); } } // end class testdatread