예제 #1
0
 public Vertex(Vector ppos)
 {
     pos = ppos.Clone();
 }
예제 #2
0
 public Vertex(Vector ppos, float u, float v)
 {
     pos = ppos.Clone();
     this.Tu = u;
     this.Tv = v;
 }