I want to have a list of colors to be used. So I’d have an arraylist of each being an object that has 3 floats, for the color scheme. I want to fill it with constant colors like red, green, black, purple, red, etc. I was wondering if anyone could give me a list of a bunch of colors and their matching float values.
you could check out the objects Color.white, Color.black, Color.green, etc
Write yourself a little test application that opens a window with a JColorChooser in it. Very helpful.
Also I have a preference to use bytes (glColour3ub((byte)255,…) rather than floats so I can just use RGB values between 0 and 255. No idea of any performance hit b/w this and floats.