Skip to content
Snippets Groups Projects
Unverified Commit 41f054d6 authored by Kerautret Bertrand's avatar Kerautret Bertrand :thinking:
Browse files

Merge branch 'master' of gitlab.ker.iutsd.univ-lorraine.fr:kerautret/2019-ISMM

parents d6799261 af4ee9eb
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
QT+=widgets QT+=widgets
TEMPLATE = app TEMPLATE = app
TARGET = ipolDemo TARGET = ipolDemo
QMAKE_CXXFLAGS += -std=c++11
INCLUDEPATH += .. \ INCLUDEPATH += .. \
../BSTools \ ../BSTools \
../BlurredSegment \ ../BlurredSegment \
......
...@@ -176,7 +176,7 @@ int main (int argc, char *argv[]) ...@@ -176,7 +176,7 @@ int main (int argc, char *argv[])
<< points.back().x() << " " << points.back().y() << std::endl; << points.back().x() << " " << points.back().y() << std::endl;
// Export pour l'affichage de tous les points d'un segments // Export pour l'affichage de tous les points d'un segments
for(auto p: points) for(auto &p : points)
{ {
foutAllPts<< p.x() << " " << p.y() << " "; foutAllPts<< p.x() << " " << p.y() << " ";
} }
......
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