Skip to content
Snippets Groups Projects
Commit ab1a0e1e authored by Vladimír Ulman's avatar Vladimír Ulman
Browse files

Added missing ParamsSetup() to hint the OpenGL.

parent 8e6944ad
No related branches found
No related tags found
No related merge requests found
...@@ -51,6 +51,8 @@ int main(int argc,char **argv) ...@@ -51,6 +51,8 @@ int main(int argc,char **argv)
mesh.ExportSTL(argv[5]); mesh.ExportSTL(argv[5]);
else else
{ {
ParamsSetup();
std::cout << "vertices #: " << mesh.Pos.size() << "\n"; std::cout << "vertices #: " << mesh.Pos.size() << "\n";
std::cout << "triangles #: " << mesh.ID.size()/3 << "\n"; std::cout << "triangles #: " << mesh.ID.size()/3 << "\n";
std::cout << "normals #: " << mesh.norm.size() << "\n"; std::cout << "normals #: " << mesh.norm.size() << "\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment