// AspectRatio.java // by Scot Drysdale on 5/16/06 //Computes distance for aspect ratio distance measure. public class AspectRatio extends Metric { public double distance(Shape s, double x, double y) { return -s.aspectRatioRecip(x, y); } }