final RasterPlotter img = new RasterPlotter(800, 600, RasterPlotter.DrawMode.MODE_SUB, "FFFFFF");
img.setColor(RasterPlotter.GREY);
for (int y = 0; y < 600; y = y + 50) PrintTool.print(img, 0, 6 + y, 0, Integer.toString(y), -1);
for (int x = 0; x < 800; x = x + 50) PrintTool.print(img, x, 6 , 0, Integer.toString(x), -1);
img.setColor(RasterPlotter.RED);
img.dot(550, 110, 90, true, 100);
img.setColor(RasterPlotter.GREEN);
img.dot(480, 200, 90, true, 100);
img.setColor(RasterPlotter.BLUE);
img.dot(620, 200, 90, true, 100);
img.setColor(RasterPlotter.RED);