does anyone know what e.consume(); does? e is an event. I couldn't find it in the java documentation.
does anyone know how to include all the java.lang.Math methods in a .java file? I tried
import java.lang.Math.*; [java]
but it complains when I write something like sqrt(50.0);
as opposed to Math.sqrt(50.0);
it is just annoying to have to type Math.xxx in front of every Math method when you are using a lot of them