Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Cazier
CGoGN
Commits
c881e51d
Commit
c881e51d
authored
Sep 01, 2011
by
Basile Sauvage
Browse files
suppression de l'affichage du countdown de la décimation
parent
69cbf02a
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/Algo/Decimation/decimation.hpp
View file @
c881e51d
...
...
@@ -148,11 +148,11 @@ void decimate(
while
(
!
finished
)
{
CGoGNout
<<
"Countdown : "
;
CGoGNout
<<
std
::
setprecision
(
8
)
<<
(
nbVertices
-
nbWantedVertices
)
<<
"
\r
"
<<
CGoGNflush
;
//
CGoGNout << "Countdown : " ;
//
CGoGNout << std::setprecision(8) << (nbVertices - nbWantedVertices) << "\r" << CGoGNflush ;
if
(
!
selector
->
nextEdge
(
d
))
{
CGoGNout
<<
CGoGNendl
<<
"out"
<<
CGoGNendl
;
//
CGoGNout << CGoGNendl << "out" << CGoGNendl ;
break
;
}
...
...
@@ -178,7 +178,7 @@ void decimate(
if
(
nbVertices
<=
nbWantedVertices
)
{
finished
=
true
;
CGoGNout
<<
CGoGNendl
<<
"done"
<<
CGoGNendl
;
//
CGoGNout << CGoGNendl << "done" << CGoGNendl ;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment