Skip to content
Snippets Groups Projects
Commit ed3160bf authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Top layer generation

parent 7ecbebdb
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ int main(){
linestrips.reserve(273050); //this is the amount of linestrips expected
std::string filepath = "../python/line_strips_fixedarcs.txt";
std::string filepath = "../python/line_strips_top.txt";
std::ifstream ifs(filepath);
if(!ifs){
......@@ -118,7 +118,7 @@ int main(){
}
std::cout << "Writing " << num_polygons << " polygons to file" << std::endl;
std::fstream outfile("../python/polygons_fixedarcs.txt", std::ios::out);
std::fstream outfile("../python/polygons_fixedarcs_top.txt", std::ios::out);
outfile.write(resultString.c_str(), resultString.size());
outfile.close();
......
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