Normalize all the line endings (#2288)

This commit is contained in:
Evan Barentin
2023-09-22 12:39:53 -04:00
committed by GitHub
parent 7547801f58
commit 2b05343e0d
61 changed files with 5848 additions and 5848 deletions
+19 -19
View File
@@ -1,19 +1,19 @@
#include <igl/readOFF.h>
#include <igl/writeOBJ.h>
#include <iostream>
Eigen::MatrixXd V;
Eigen::MatrixXi F;
int main(int argc, char *argv[])
{
// Load a mesh in OFF format
igl::readOFF(TUTORIAL_SHARED_PATH "/cube.off", V, F);
// Print the vertices and faces matrices
std::cout << "Vertices: " << std::endl << V << std::endl;
std::cout << "Faces: " << std::endl << F << std::endl;
// Save the mesh in OBJ format
igl::writeOBJ("cube.obj",V,F);
}
#include <igl/readOFF.h>
#include <igl/writeOBJ.h>
#include <iostream>
Eigen::MatrixXd V;
Eigen::MatrixXi F;
int main(int argc, char *argv[])
{
// Load a mesh in OFF format
igl::readOFF(TUTORIAL_SHARED_PATH "/cube.off", V, F);
// Print the vertices and faces matrices
std::cout << "Vertices: " << std::endl << V << std::endl;
std::cout << "Faces: " << std::endl << F << std::endl;
// Save the mesh in OBJ format
igl::writeOBJ("cube.obj",V,F);
}