Esempio n. 1
0
 public ccQuad3()
 {
     tl = new ccVertex3F();
     tr = new ccVertex3F();
     bl = new ccVertex3F();
     br = new ccVertex3F();
 }
Esempio n. 2
0
 public static ccVertex3F vertex3(float x, float y, float z)
 {
     ccVertex3F c = new ccVertex3F(x, y, z);
     return c;
 }
Esempio n. 3
0
 public ccV3F_C4B_T2F()
 {
     vertices = new ccVertex3F();
     colors = new ccColor4B();
     texCoords = new ccTex2F();
 }