Removed printouts

This commit is contained in:
_ 2018-04-19 04:37:59 -07:00
parent c6c57269b9
commit e1d2dff25e
2 changed files with 0 additions and 2 deletions

View File

@ -62,6 +62,5 @@ void append(const char *filename, const char *t, unsigned size) {
if (written == 0) {
perror("write error");
}
printf("wrote %x\n", written);
}
}

View File

@ -46,7 +46,6 @@ void writemesh(const struct MeshHeader *mh,
for (int i = 0; i < newmh.numBatch; i++) {
unsigned int nVertices = m -> b -> bd[i].numVertex;
append(fn, (char*)(m -> b[i].vd.positions), sizeof(struct Coordinate) * nVertices);
DEVIL1GEO.printcoordinate(m -> b -> vd.positions, 3);
append(fn, (char*)(m -> b[i].vd.normals), sizeof(struct Coordinate) * nVertices);
append(fn, (char*)(m -> b[i].vd.u), sizeof(struct UVs) * nVertices);
append(fn, (char*)(m -> b[i].vd.bi), sizeof(struct BoneIndexes) * nVertices);