Package net.sf.myway.edit.ui.editors

Examples of net.sf.myway.edit.ui.editors.CoordinateSystem.toPoint()


  public void execute() {
    final CoordinateSystem cs = _target.getCoordinateSystem();
    final MapNode center = _object.getCenter().getNode();
    final Point pos = new Point(newPos);
    if (_relative) {
      final Point point = cs.toPoint(center.getPosition());
      pos.x += point.x;
      pos.y += point.y;
    }
    final Position position = cs.toPosition(pos);
    MapNode n = getBL().findNode(position);
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.