/** * A point with three double coords, x, y, and z.. * * @author Bob Futrelle * @version 0.1, 14 March 2005 * */ public class P3d { double x,y,z; P3d(double x, double y, double z) { this.x = x; this.y = y; this.z = z; } public String toString(){ return "\n" + x + " " + y + " " + z; } }