Examples of colourNext()


Examples of mapwriter.map.Marker.colourNext()

    // zoom on mouse direction wheel scroll
    public void mouseDWheelScrolled(int x, int y, int direction) {
      Marker marker = this.getMarkerNearScreenPos(x, y);
      if ((marker != null) && (marker == this.mw.markerManager.selectedMarker)) {
        if (direction > 0) {
          marker.colourNext();
        } else {
          marker.colourPrev();
        }
       
      } else if (this.dimensionLabel.posWithin(x, y)) {
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.