Package research.figure

Examples of research.figure.RectangleFigure


    public void mouseDown(MouseEvent e, int x, int y) {
        super.mouseDown(e, x, y);
        anchor = e.getPoint();
       
        if(area == null){
            area = new RectangleFigure();
        }
        area.setDisplayBox(anchor, anchor);
       
        drawingView.add(area);
        drawingView.repairDamage();
View Full Code Here


    public void mouseDown(MouseEvent e, int x, int y) {
        super.mouseDown(e, x, y);
        anchor = e.getPoint();
       
        if(area == null){
            area = new RectangleFigure();
        }
        area.setDisplayBox(anchor, anchor);
       
        drawingView.add(area);
        drawingView.repairDamage();
View Full Code Here

TOP

Related Classes of research.figure.RectangleFigure

Copyright © 2018 www.massapicom. 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.