Time for a release!
Looks great
Thank you!
OpenGL ES looks like it will become a none-issue now that all the tegra chipsets are introducing full opengl. Granted, this might not carry on to other chipsets, but it could also pave the way for it.
Eclipse is my favourite IDE, it has all I need plus more, and it is very easy to use with tons of great features, and I hate white space. My indentation is exactly as I like it.
int ay=i==0||i==3||i==5?y+1:i==1||i==6?y:y-1;
This is what is known as a conditional or turnery operation. It works in the form: <boolean>?<if true>:<if false>
This is actually a conditional inside a conditional. Therefore, my code means the same as this:
int ay;
if(i==0||i==3||i==5){
ay=y+1;
}else if(i==1||i==6){
ay=y;
}else{
ay=y-1;
}
The conditional is much easier to type, takes up less space, and I prefer it, but it does the same thing as a simple if/else statement.
Again, Eclipse is my preference. Am I doing this project to please you? No. I am only doing this for fun. I care about your code style, whatever it may be. I name variables so that I, the developer, can understand them. Don't know what they mean? If you're such an expert, look at the code and find out what they do. I don't use comments alot because I expect people to be able to understand the actual code. Besides, this program is not that complex. This is not some perfect little present I'm making for you, so if you have a problem with my project, feel free to make your own.