Rename file extensions

This commit is contained in:
Andreas Fabri 2023-06-29 10:28:17 +01:00
parent d88d2157bf
commit 60571eeea2
3 changed files with 2 additions and 2 deletions

View File

@ -36,8 +36,8 @@ int main()
std::cout << "There are " << edges.size() std::cout << "There are " << edges.size()
<< " vertices on the convex hull." << std::endl; << " vertices on the convex hull." << std::endl;
#include "triangulation1.cpp" // See below #include "triangulation1.h" // See below
#include "triangulation2.cpp" #include "triangulation2.h"
return 0; return 0;
} }