Skip to content

Commit

Permalink
Updated one test app due to #137
Browse files Browse the repository at this point in the history
  • Loading branch information
tillnagel committed Dec 7, 2016
1 parent 8c08c0b commit 19ee170
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions test/de/fhpotsdam/unfolding/TransparentThingsOnOpenGLMapApp.java
Expand Up @@ -10,14 +10,17 @@ public class TransparentThingsOnOpenGLMapApp extends PApplet {
UnfoldingMap map; UnfoldingMap map;
SimplePointMarker marker; SimplePointMarker marker;


public void settings() {
size(600, 600, P2D);
}

public void setup() { public void setup() {
size(600, 600, OPENGL);
map = new UnfoldingMap(this, new Microsoft.AerialProvider()); map = new UnfoldingMap(this, new Microsoft.AerialProvider());


marker = new SimplePointMarker(new Location(-15, -40)); marker = new SimplePointMarker(new Location(-15, -40));
marker.setColor(color(0, 0, 255, 127)); marker.setColor(color(0, 0, 255, 127));
marker.setRadius(50); marker.setDiameter(50);

map.addMarker(marker); map.addMarker(marker);
} }


Expand All @@ -42,4 +45,7 @@ public void test() {
// //blendMode(BLEND); // //blendMode(BLEND);
} }


public static void main(String args[]) {
PApplet.main(new String[] { TransparentThingsOnOpenGLMapApp.class.getName() });
}
} }

0 comments on commit 19ee170

Please sign in to comment.