Skip to content

upgrade to processing 2.1 #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jan 12, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified lib/core.jar
Binary file not shown.
22 changes: 10 additions & 12 deletions lib/export.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# if you want to support more platforms, see the jogl web site to get
# the natives libraries for the platform in question (i.e. linux-amd64).
# then, add it to the applet line for export. for applications, you'll
# have to make the changes by hand, i.e. use the linux version of the
# export, and modify its contents to include the necessary files for
# your platform.

application.macosx = opengl.jar, jogl.jar, libjogl.jnilib, libjogl_awt.jnilib, libjogl_cg.jnilib
application.windows = opengl.jar, jogl.jar, jogl.dll, jogl_awt.dll, jogl_cg.dll
application.linux = opengl.jar, jogl.jar, libjogl.so, libjogl_awt.so, libjogl_cg.so, libjogl_drihack.so

applet = opengl.jar, jogl.jar, jogl-natives-linux-i586.jar, jogl-natives-macosx-ppc.jar, jogl-natives-macosx-universal.jar, jogl-natives-windows-i586.jar
# If you want to support more platforms, visit jogamp.org to get the
# natives libraries for the platform in question (i.e. Solaris).

name = OpenGL

application.macosx=core.jar,jogl-all.jar,gluegen-rt.jar,jogl-all-natives-macosx-universal.jar,gluegen-rt-natives-macosx-universal.jar
application.windows32=core.jar,jogl-all.jar,gluegen-rt.jar,jogl-all-natives-windows-i586.jar,gluegen-rt-natives-windows-i586.jar
application.windows64=core.jar,jogl-all.jar,gluegen-rt.jar,jogl-all-natives-windows-amd64.jar,gluegen-rt-natives-windows-amd64.jar
application.linux32=core.jar,jogl-all.jar,gluegen-rt.jar,jogl-all-natives-linux-i586.jar,gluegen-rt-natives-linux-i586.jar
application.linux64=core.jar,jogl-all.jar,gluegen-rt.jar,jogl-all-natives-linux-amd64.jar,gluegen-rt-natives-linux-amd64.jar
Binary file added lib/gluegen-rt-natives-linux-amd64.jar
Binary file not shown.
Binary file added lib/gluegen-rt-natives-linux-i586.jar
Binary file not shown.
Binary file added lib/gluegen-rt-natives-macosx-universal.jar
Binary file not shown.
Binary file added lib/gluegen-rt-natives-windows-amd64.jar
Binary file not shown.
Binary file added lib/gluegen-rt-natives-windows-i586.jar
Binary file not shown.
Binary file modified lib/gluegen-rt.jar
Binary file not shown.
Binary file added lib/jogl-all-natives-linux-amd64.jar
Binary file not shown.
Binary file added lib/jogl-all-natives-linux-i586.jar
Binary file not shown.
Binary file added lib/jogl-all-natives-macosx-universal.jar
Binary file not shown.
Binary file added lib/jogl-all-natives-windows-amd64.jar
Binary file not shown.
Binary file added lib/jogl-all-natives-windows-i586.jar
Binary file not shown.
Binary file added lib/jogl-all.jar
Binary file not shown.
Binary file removed lib/jogl-natives-linux-i586.jar
Binary file not shown.
Binary file removed lib/jogl-natives-macosx-ppc.jar
Binary file not shown.
Binary file removed lib/jogl-natives-macosx-universal.jar
Binary file not shown.
Binary file removed lib/jogl-natives-windows-i586.jar
Binary file not shown.
Binary file removed lib/jogl.dll
Binary file not shown.
Binary file removed lib/jogl.jar
Binary file not shown.
Binary file removed lib/jogl_awt.dll
Binary file not shown.
Binary file removed lib/jogl_cg.dll
Binary file not shown.
Binary file removed lib/libgluegen-rt.jnilib
Binary file not shown.
Binary file removed lib/libjogl.jnilib
Binary file not shown.
Binary file removed lib/libjogl.so
Binary file not shown.
Binary file removed lib/libjogl_awt.jnilib
Binary file not shown.
Binary file removed lib/libjogl_awt.so
Binary file not shown.
Binary file removed lib/libjogl_cg.jnilib
Binary file not shown.
Binary file removed lib/libjogl_cg.so
Binary file not shown.
Binary file removed lib/libjogl_drihack.so
Binary file not shown.
Binary file removed lib/linux-x86_64/libgluegen-rt.so
Binary file not shown.
Binary file removed lib/linux-x86_64/libjogl.so
Binary file not shown.
Binary file removed lib/linux-x86_64/libjogl_awt.so
Binary file not shown.
Binary file removed lib/linux-x86_64/libjogl_cg.so
Binary file not shown.
Binary file removed lib/opengl.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions src/code_swarm.java
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ public void drawDate() {
fill(fontColor, 255);
String dateText = formatter.format(prevDate);
textAlign(RIGHT, BASELINE);
textSize(font.size);
textSize(font.getSize());
text(dateText, width - 3, height - (2 + textDescent()));
}

Expand Down Expand Up @@ -534,7 +534,7 @@ public void drawLegend() {
for (int i = 0; i < colorAssigner.tests.size(); i++) {
ColorTest t = colorAssigner.tests.get(i);
fill(t.c1, 200);
text(t.label, font.size, 3 + ((i + 1) * (font.size + 2)));
text(t.label, font.getSize(), 3 + ((i + 1) * (font.getSize() + 2)));
}
}

Expand Down