Created
October 28, 2012 22:07
-
-
Save anonymous/3970106 to your computer and use it in GitHub Desktop.
Hello world in unfolding maps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import processing.opengl.*; | |
import codeanticode.glgraphics.*; | |
import de.fhpotsdam.unfolding.*; | |
import de.fhpotsdam.unfolding.geo.*; | |
import de.fhpotsdam.unfolding.utils.*; | |
UnfoldingMap map; | |
void setup() { | |
size(800, 600, GLConstants.GLGRAPHICS); | |
map = new UnfoldingMap(this); | |
MapUtils.createDefaultEventDispatcher(this, map); | |
} | |
void draw() { | |
map.draw(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment