Package net.sf.robocode.robotpaint

Examples of net.sf.robocode.robotpaint.Graphics2DSerialized.drawRect()


    sg.setColor(Color.YELLOW);
    sg.draw(new Rectangle2D.Double(20, 20, 30, 50));

    sg.setColor(Color.BLACK);
    sg.drawLine(99, 3, 78, 3);
    sg.drawRect(90, 20, 30, 50);

    sg.setColor(Color.CYAN);

    sg.setStroke(new BasicStroke(1, 2, BasicStroke.JOIN_ROUND, 4, null, 0));
    sg.fill(new Rectangle2D.Double(20, 70, 30, 50));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.