/** Holds the x and y components of the edgelet plus (Manhattan) magnitude. * @author Bob Futrelle * @version March 27 2004 v0.1 **/ public class Edgelet { double x, y, mag; /** Creates the magnitude field also, using Manhattan metric. **/ public void createMagnitude() { mag = Math.abs(x) + Math.abs(y); } } // class Edgelet