Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CGoGN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
David Cazier
CGoGN
Commits
3eab3531
Commit
3eab3531
authored
Feb 06, 2015
by
Pierre Kraemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bad usage of single quotes..
parent
652ebcbd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
include/Algo/Decimation/edgeSelector.h
include/Algo/Decimation/edgeSelector.h
+3
-3
include/Algo/Decimation/geometryApproximator.hpp
include/Algo/Decimation/geometryApproximator.hpp
+2
-2
include/Algo/Decimation/halfEdgeSelector.h
include/Algo/Decimation/halfEdgeSelector.h
+2
-2
No files found.
include/Algo/Decimation/edgeSelector.h
View file @
3eab3531
...
...
@@ -201,7 +201,7 @@ public:
{
edgeInfo
=
m
.
template
addAttribute
<
EdgeInfo
,
EDGE
,
MAP
>(
"edgeInfo"
)
;
std
::
string
attrName
=
m_position
.
name
();
attrName
+=
'
_QEM
'
;
attrName
+=
"_QEM"
;
quadric
=
m
.
template
addAttribute
<
Utils
::
Quadric
<
REAL
>,
VERTEX
,
MAP
>
(
attrName
)
;
}
~
EdgeSelector_QEM
()
...
...
@@ -257,7 +257,7 @@ public:
{
edgeInfo
=
m
.
template
addAttribute
<
EdgeInfo
,
EDGE
,
MAP
>(
"edgeInfo"
)
;
std
::
string
attrName
=
m_position
.
name
();
attrName
+=
'
_QEM
'
;
attrName
+=
"_QEM"
;
quadric
=
m
.
template
addAttribute
<
Utils
::
Quadric
<
REAL
>,
VERTEX
,
MAP
>
(
attrName
)
;
}
~
EdgeSelector_QEMml
()
...
...
@@ -661,7 +661,7 @@ public:
{
edgeInfo
=
m
.
template
addAttribute
<
EdgeInfo
,
EDGE
,
MAP
>(
"edgeInfo"
)
;
std
::
string
attrName
=
m_position
.
name
();
attrName
+=
'
_QEM
'
;
attrName
+=
"_QEM"
;
m_quadric
=
m
.
template
addAttribute
<
Utils
::
Quadric
<
REAL
>,
VERTEX
,
MAP
>
(
attrName
)
;
}
~
EdgeSelector_GeomColOptGradient
()
...
...
include/Algo/Decimation/geometryApproximator.hpp
View file @
3eab3531
...
...
@@ -43,7 +43,7 @@ template <typename PFP>
bool
Approximator_QEM
<
PFP
>::
init
()
{
std
::
string
attrName
=
this
->
m_attr
.
name
();
attrName
+=
'
_QEM
'
;
attrName
+=
"_QEM"
;
m_quadric
=
this
->
m_map
.
template
getAttribute
<
Utils
::
Quadric
<
REAL
>,
VERTEX
,
MAP
>
(
attrName
);
// Does not require to be valid (if it is not, altenatives will be used).
...
...
@@ -116,7 +116,7 @@ template <typename PFP>
bool
Approximator_QEMhalfEdge
<
PFP
>::
init
()
{
std
::
string
attrName
=
this
->
m_attr
.
name
();
attrName
+=
'
_QEM
'
;
attrName
+=
"_QEM"
;
m_quadric
=
this
->
m_map
.
template
getAttribute
<
Utils
::
Quadric
<
REAL
>,
VERTEX
,
MAP
>
(
attrName
)
;
// Does not require to be valid (if it is not, altenatives will be used).
...
...
include/Algo/Decimation/halfEdgeSelector.h
View file @
3eab3531
...
...
@@ -81,7 +81,7 @@ public:
{
halfEdgeInfo
=
m
.
template
addAttribute
<
HalfEdgeInfo
,
DART
,
MAP
>(
"halfEdgeInfo"
)
;
std
::
string
attrName
=
m_position
.
name
();
attrName
+=
'
_QEM
'
;
attrName
+=
"_QEM"
;
m_quadric
=
m
.
template
addAttribute
<
Utils
::
Quadric
<
REAL
>,
VERTEX
,
MAP
>
(
attrName
)
;
}
~
HalfEdgeSelector_QEMml
()
...
...
@@ -343,7 +343,7 @@ public:
{
halfEdgeInfo
=
m
.
template
addAttribute
<
HalfEdgeInfo
,
DART
,
MAP
>(
"halfEdgeInfo"
)
;
std
::
string
attrName
=
m_position
.
name
();
attrName
+=
'
_QEM
'
;
attrName
+=
"_QEM"
;
m_quadric
=
m
.
template
addAttribute
<
Utils
::
Quadric
<
REAL
>,
VERTEX
,
MAP
>
(
attrName
)
;
}
~
HalfEdgeSelector_ColorGradient
()
...
...
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