From ed3160bf0fea3c7b14d601a06df662757b4ff744 Mon Sep 17 00:00:00 2001
From: Pascal <engelerp@phys.ethz.ch>
Date: Wed, 26 Jul 2023 17:55:29 +0200
Subject: [PATCH] Top layer generation

---
 data_generation/cpp/main.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/data_generation/cpp/main.cpp b/data_generation/cpp/main.cpp
index ad356c9..72581df 100644
--- a/data_generation/cpp/main.cpp
+++ b/data_generation/cpp/main.cpp
@@ -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();
 
-- 
GitLab