Package diva.util.java2d

Examples of diva.util.java2d.Polyline2D.translate()


     */
    public void translate(double x, double y) {
        repaint();

        Polyline2D line = (Polyline2D) getShape();
        line.translate(x, y);
        repaint();
    }
}
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.