remove debug stuff

This commit is contained in:
2022-03-18 09:52:36 -05:00
parent 1b8c7458a5
commit 3f0681c981
2 changed files with 3 additions and 6 deletions

View File

@@ -16,12 +16,9 @@
#include "ReadSTL.cpp"
using namespace std;
//int main(int argc, char** argv) {
int main(){
// Debug mode
ReadSTL stl1("STLFiles/shape.stl");
// End debug mode
//ReadSTL stl1(argv[1]);
int main(int argc, char** argv) {
ReadSTL stl1(argv[1]);
cout << endl << "File read successfully!" << endl;
// Formatted file info output
cout << "Facets in file: " << stl1.getNumFacets() << endl << endl;