package lectures.oegraphics;
import util.annotations.WebDocuments;

import bus.uigen.ObjectEditor;

@WebDocuments({"Lectures/Oegraphics.pptx", "Lectures/Oegraphics.pdf", "Videos/Oegraphics.avi"})
public class GraphicsShapes {
    public static void main (String[] args) {
        ObjectEditor.drawRectangle(100, 60, 75, 50);
        ObjectEditor.fillOval(100, 60, 75, 50);
        ObjectEditor.drawLine(100, 60, 75, 50);
//      ObjectEditor.drawString("hello world", 100, 20);
//      ObjectEditor.drawImage("shuttle.jpg", 0, 100);
    }
}