Compare commits

...

2 Commits

Author SHA1 Message Date
coke ad101c3f54
add image to readme 2020-03-09 15:18:29 -04:00
0xC0CAC01A 9340b61ce3 no more rgba data 2020-03-09 14:47:39 -04:00
5 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,7 @@ namespace RBX
{
std::vector<FileMeshVertexNormalTexture3d> vnts;
std::vector<FileMeshFace> faces;
// G3D::AABox aabb;
};
void writeFileMesh(std::ostream&, const FileMeshData&);

View File

@ -17,7 +17,7 @@ namespace RBX
float vx, vy, vz;
float nx, ny, nz;
float tu, tv, tw;
char r, g, b, a;
// char r, g, b, a;
};
struct FileMeshFace

Binary file not shown.

View File

@ -1,6 +1,8 @@
# RBXMeshConverter
Convert a wavefront OBJ to RBX mesh V2
![Result](https://user-images.githubusercontent.com/61764548/76249171-2dc7e180-6219-11ea-9af7-29c08c54ebb2.PNG)
## Credits
[OBJ-Loader](https://github.com/Bly7/OBJ-Loader)