hey guys,
Even though Im still learning to get better at using just core Java for games, I want to begin messing with LWJGL drawing. I started with the tutorials at NinjaCave, and they were helpful. I really like to learn from the API documentation, but the javadocs for the LWJGL are basically non existant. I looked in the documentation for the GL11 class, and there are no descriptions at all for the fields or methods. The only things I found actual write ups for are the Mouse, Keyboard, Display, etc classes. So Is there somewhere that I can learn what all these methods and fields are?? Some examples:
GL11.glMatrixMode(GL11.GL_PROJECTION);
GL11.glLoadIdentity();
GL11.glOrtho(0, 800, 600, 0, 1, -1);
GL11.glMatrixMode(GL11.GL_MODELVIEW);
This stuff works… but I have NO IDEA what is what