Exemple #1
0
 public void Clean()
 {
     Data = new VVertex3D(Data.Vertices);
 }
Exemple #2
0
 public VMesh(int indices, int vertices)
 {
     Data    = new VVertex3D(vertices);
     Indices = new uint[indices];
     Viz     = new VVVBO(vertices, indices);
 }