// Hyper-Point class supporting KDTree class //package edu.wlu.cs.levy.CG; class HPoint { protected double [] coord; protected HPoint(int n) { coord = new double [n]; } protected HPoint(double [] x) { coord = new double[x.length]; for (int i=0; i