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
CGoGN
CGoGN
Commits
c67517a7
Commit
c67517a7
authored
Apr 30, 2012
by
Pierre Kraemer
Browse files
some CellMarker template arguments
parent
d0565b60
Changes
3
Hide whitespace changes
Inline
Side-by-side
include/Algo/Decimation/simplifMesh.h
View file @
c67517a7
...
...
@@ -36,7 +36,6 @@ namespace Algo
namespace
Decimation
{
/**
* Example of Edge_Critera class parameter
* Will be used as edge embedding
...
...
include/Algo/Geometry/stats.h
View file @
c67517a7
...
...
@@ -40,7 +40,7 @@ void statModele(typename PFP::MAP& map, const typename PFP::TVEC3& position)
int
nbFaces
=
0
;
int
nbVertex
=
0
;
CellMarker
mVertex
(
map
,
VERTEX
);
CellMarker
<
VERTEX
>
mVertex
(
map
);
float
ratioMinMax
=
0
;
int
nbEdgePerVertex
=
0
;
...
...
include/Algo/ImplicitHierarchicalMesh/subdivision3.hpp
View file @
c67517a7
...
...
@@ -729,7 +729,7 @@ Dart subdivideVolume(typename PFP::MAP& map, Dart d, typename PFP::TVEC3& positi
*/
DartMarkerStore
mf
(
map
);
// Lock a face marker to save one dart per face
CellMarker
mv
(
map
,
VERTEX
);
CellMarker
<
VERTEX
>
mv
(
map
);
typename
PFP
::
VEC3
volCenter
;
unsigned
count
=
0
;
...
...
@@ -1102,7 +1102,7 @@ Dart subdivideVolumeGen(typename PFP::MAP& map, Dart d, typename PFP::TVEC3& pos
*/
DartMarkerStore
mf
(
map
);
// Lock a face marker to save one dart per face
CellMarker
mv
(
map
,
VERTEX
);
CellMarker
<
VERTEX
>
mv
(
map
);
typename
PFP
::
VEC3
volCenter
;
unsigned
count
=
0
;
...
...
@@ -1344,7 +1344,7 @@ Dart subdivideVolumeGen(typename PFP::MAP& map, Dart d, typename PFP::TVEC3& pos
//std::cout << "1ere etape finished" << std::endl;
CellMarker
mtf
(
map
,
FACE
);
CellMarker
<
FACE
>
mtf
(
map
);
//Etape 2
for
(
std
::
vector
<
std
::
pair
<
Dart
,
Dart
>
>::
iterator
edges
=
subdividedfacesT
.
begin
();
edges
!=
subdividedfacesT
.
end
();
++
edges
)
...
...
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