Comment #1: /home/edmund/evaluate_projects/megamek-0.36.1-source/src/megamek/client/ui/AWT/boardview3d/ImageModel.java: 58-60 [COMMENT #1] get the internal data private static final GeometryArray[] tracePixels(BufferedImage img, boolean scale) { WritableRaster r = img.getAlphaRaster(); ****** COMMENT #1 ****** int w = img.getWidth(); int h = img.getHeight(); int[] pixels = new int[w*h]; r.getPixels(0, 0, w, h, pixels); boolean[][][] border = new boolean[h+1][w+1][4]; boolean[] set = new boolean[4]; # Rating on this comment # 1: accurate, adequate, concise and useful at describing the source code. (committable) # 2: not accurate, adequate, concise, or useful, at describing the source code but can be fixed with minor modifications. # (committable but require fixes) # 3: not accurate, adequate, concise, or useful at describing the source code. (not committable) # (Fill in after the keyword: 1, 2 or 3) CLASSIFICATION: ————————————