Package DisplayProject.actions

Examples of DisplayProject.actions.LineConfigure


    public void setPoints(int startX, int startY, int endX, int endY) {
        this.endY = endY;
        this.endX = endX;
        this.startY = startY;
        this.startX = startX;
        ActionMgr.addAction(new LineConfigure(this));
        startXPixels = UIutils.milsToPixels(this.startX);
        startYPixels = UIutils.milsToPixels(this.startY);
        endXPixels = UIutils.milsToPixels(this.endX);
        endYPixels = UIutils.milsToPixels(this.endY);
View Full Code Here


    public void setPoints(int startX, int startY, int endX, int endY) {
        this.endY = endY;
        this.endX = endX;
        this.startY = startY;
        this.startX = startX;
        ActionMgr.addAction(new LineConfigure(this));
        startXPixels = UIutils.milsToPixels(this.startX);
        startYPixels = UIutils.milsToPixels(this.startY);
        endXPixels = UIutils.milsToPixels(this.endX);
        endYPixels = UIutils.milsToPixels(this.endY);
View Full Code Here

TOP

Related Classes of DisplayProject.actions.LineConfigure

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.