Examples of ScreenPosition


Examples of de.fhpotsdam.unfolding.utils.ScreenPosition

    debugDisplay.draw();

    noFill();
    // red: London
    ScreenPosition pLondon = map.mapDisplay.getScreenPosition(locLondon);
    stroke(255, 0, 0);
    ellipse(pLondon.x, pLondon.y, 12, 12);
   
    // blue: Quito
    ScreenPosition pQuito = map.mapDisplay.getScreenPosition(locQuito);
    stroke(0, 0, 255);
    ellipse(pQuito.x, pQuito.y, 12, 12);
  }
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.