import java.awt.geom.GeneralPath;

public class NewClass
{

    public static void main(String[] args)
    {
        GeneralPath path = createPath();
        path.append(path.getPathIterator(null), true);
    }

    static GeneralPath createPath()
    {
        GeneralPath path = new GeneralPath();
        path.moveTo(150.0, 524.0);
        path.lineTo(67.0, 524.0);
        path.closePath();
        return path;
    }
}
