Package org.locationtech.udig.image.georeferencing.internal.ui.imagepanel.tools

Examples of org.locationtech.udig.image.georeferencing.internal.ui.imagepanel.tools.ImageTool


    // get the clicked point
    int x = e.x;
    int y = e.y;
    ImageInputEvent event = new ImageInputEvent(e, eventType, x, y);

    ImageTool tool = getActiveTool();
    if (tool == null) {
      return;

    }
    this.canvas.setCursor(tool.getCursor());
    tool.eventHandle(event);
  }
View Full Code Here

TOP

Related Classes of org.locationtech.udig.image.georeferencing.internal.ui.imagepanel.tools.ImageTool

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.