Example #1
0
 public void setNormals(Normal n)
 {
     this.n = n;
 }
Example #2
0
 public vertex(Single px, Single py, Single pz, byte r, byte g, byte b, byte a, Normal n)
 {
     this.px = px;
     this.py = py;
     this.pz = pz;
     this.r  = r;
     this.g  = g;
     this.b  = b;
     this.a  = a;
     this.n  = n;
 }