Example #1
0
 public ccV3F_C4B_T2F()
 {
     vertices = new ccVertex3F();
     colors = new ccColor4B();
     texCoords = new ccTex2F();
 }
Example #2
0
 public static ccTex2F tex2(float u, float v)
 {
     ccTex2F t = new ccTex2F(u, v);
     return t;
 }
Example #3
0
 public ccV2F_C4F_T2F()
 {
     vertices = new ccVertex2F();
     colors = new ccColor4F();
     texCoords = new ccTex2F();
 }