BlueDot.class
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//

package npw;

import java.awt.Color;
import javax.swing.SwingUtilities;
import painter.SPainter;
import shapes.SCircle;

public class BlueDot {
    private void paintTheImage() {
        SPainter klee = new SPainter("Blue Dot", 600, 600);
        SCircle dot = new SCircle(200.0D);
        klee.setColor(Color.BLUE);
        klee.paint(dot);
    }

    public BlueDot() {
        this.paintTheImage();
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                new BlueDot();
            }
        });
    }
}