Java Graphics Draw Hut Man

Following is a good program giving command over graphics. First imagine rough coordinates, after seeing the figure, adjust the coordinates. import java.awt.* ; import java.awt.event.* ; public class Hut extends Frame { public Hut() { setBackground(Color.cyan); setTitle(“House to live by SNRao”); setSize(450,350); setVisible(true); addWindowListener(new WindowAdapter() { // for frame closing public void windowClosing( WindowEvent e …

Java Graphics Draw Hut Man Read More »