I'm trying to figure how to this on OpenGL for SDK using OpenGL ES 2.0 in Java. I want to draw multiple triangles (most like arbitrary) with different colors. I currently have a Triangle class that can draw a triangle with a color, coordinates passed in as a FloatBuffer and color passed in as an array (pretty much following this example since I'm just a beginner to OpenGL).
I tried adding more points to the coordinate array before putting it in the FloatBuffer, but unfortunately that just draws the triangles as one single polygon, and I can't change the color for each individual triangle.
May I get some help on this on how to best start this? I was thinking about creating each class for each triangle, but I don't know if that will be efficient when it comes to drawing a bunch of triangles with different colors. If there is any other simple way, I would really like to hear.