Exemplo n.º 1
0
 public static MeshSurface newMesh(
     boolean isAlt,
     T3[] vertices,
     int vertexCount,
     int[][] polygonIndexes,
     T3[] normals,
     int nNormals) {
   MeshSurface ms = new MeshSurface();
   ms.pis = polygonIndexes;
   if (isAlt) ms.altVertices = vertices;
   else ms.vs = vertices;
   ms.vc = (vertexCount == 0 ? vertices.length : vertexCount);
   ms.normals = normals;
   ms.normalCount = (nNormals == 0 && normals != null ? normals.length : nNormals);
   return ms;
 }
Exemplo n.º 2
0
 public static MeshSurface newSlab(
     T3[] vertices,
     int vertexCount,
     float[] vertexValues,
     int[][] polygonIndexes,
     int polygonCount,
     int checkCount) {
   // from DRAW only
   MeshSurface ms = new MeshSurface();
   ms.vs = vertices;
   ms.vvs = vertexValues;
   ms.vc = vertexCount;
   ms.pis = polygonIndexes;
   ms.pc = polygonCount;
   ms.checkCount = checkCount; // will be 1
   return ms;
 }