Merge branch 'main' into 'feature/openFile'

# Conflicts:
#   path.h
This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-06-19 08:26:49 +00:00
9 changed files with 118 additions and 17 deletions
+8 -1
View File
@@ -81,4 +81,11 @@ Path::Path(QFile *file){
}
void Path::addStep(int indice){step.insert(indice, Step());}
void Path::addStep(int indice){
if(indice==-1){
step.append(Step());
}else{
step.insert(indice, Step());
}
}