Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
KennethVanhoey
CGoGN
Commits
52c137ae
Commit
52c137ae
authored
Jul 09, 2014
by
Kenneth Vanhoey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed some warnings of QEM and Pmesh
parent
e8bbcd8e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
include/Algo/ProgressiveMesh/pmesh.hpp
include/Algo/ProgressiveMesh/pmesh.hpp
+2
-2
include/Utils/qem.h
include/Utils/qem.h
+2
-2
No files found.
include/Algo/ProgressiveMesh/pmesh.hpp
View file @
52c137ae
...
...
@@ -45,7 +45,7 @@ ProgressiveMesh<PFP>::ProgressiveMesh(
VertexAttribute
<
VEC3
,
MAP
>&
pos
)
:
m_map
(
map
),
position
(
pos
),
position
(
pos
),
inactiveMarker
(
inactive
)
{
CGoGNout
<<
" creating approximator and predictor.."
<<
CGoGNflush
;
...
...
@@ -141,7 +141,7 @@ ProgressiveMesh<PFP>::ProgressiveMesh(
Algo
::
Surface
::
Decimation
::
Selector
<
PFP
>*
selector
,
std
::
vector
<
Algo
::
Surface
::
Decimation
::
ApproximatorGen
<
PFP
>*>&
approximators
,
VertexAttribute
<
VEC3
,
MAP
>&
position
)
:
m_map
(
map
),
m_selector
(
selector
),
m_approximators
(
approximators
)
,
position
(
position
),
inactiveMarker
(
inactive
)
m_map
(
map
),
position
(
position
),
inactiveMarker
(
inactive
),
m_selector
(
selector
),
m_approximators
(
approximators
)
{
CGoGNout
<<
" initializing approximators.."
<<
CGoGNflush
;
for
(
typename
std
::
vector
<
Algo
::
Surface
::
Decimation
::
ApproximatorGen
<
PFP
>*>::
iterator
it
=
m_approximators
.
begin
();
it
!=
m_approximators
.
end
();
++
it
)
...
...
include/Utils/qem.h
View file @
52c137ae
...
...
@@ -521,9 +521,9 @@ public:
*/
friend
std
::
ostream
&
operator
<<
(
std
::
ostream
&
out
,
const
QuadricHF
<
REAL
>&
q
)
{
// TODO
out << "(" << q.m_A << ", " << q.m_b << ", " << q.m_c << ")" ;
out
<<
"("
<<
q
.
m_A
<<
", "
<<
q
.
m_b
<<
", "
<<
q
.
m_c
<<
")"
;
return
out
;
}
;
}
/*!
* \brief Read from stream operator
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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