001    package ui.recognizer;
002    
003    import java.awt.Point;
004    
005    /** A class representing an image coordinate.
006     * The units are in integers because pixels are the smallest resolvable item in the data.
007     */
008    public class ImageCoordinate extends Point {
009        public ImageCoordinate(int ax, int ay) {
010            super(ax, ay);
011        }
012    }
013