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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
KennethVanhoey
CGoGN
Commits
bb982acb
Commit
bb982acb
authored
Nov 13, 2012
by
untereiner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding bertram wavelets surface/volumes and sqrt3 lazy wavelet
parent
6a58a080
Changes
14
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
1745 additions
and
603 deletions
+1745
-603
include/Algo/Modelisation/tetrahedralization.hpp
include/Algo/Modelisation/tetrahedralization.hpp
+3
-1
include/Algo/Multiresolution/Map2MR/Filters/bertram.h
include/Algo/Multiresolution/Map2MR/Filters/bertram.h
+659
-0
include/Algo/Multiresolution/Map2MR/Filters/sqrt3.h
include/Algo/Multiresolution/Map2MR/Filters/sqrt3.h
+64
-51
include/Algo/Multiresolution/Map2MR/Masks/sqrt3.h
include/Algo/Multiresolution/Map2MR/Masks/sqrt3.h
+40
-2
include/Algo/Multiresolution/Map2MR/map2MR_PrimalAdapt.h
include/Algo/Multiresolution/Map2MR/map2MR_PrimalAdapt.h
+10
-0
include/Algo/Multiresolution/Map2MR/map2MR_PrimalAdapt.hpp
include/Algo/Multiresolution/Map2MR/map2MR_PrimalAdapt.hpp
+92
-1
include/Algo/Multiresolution/Map2MR/map2MR_PrimalRegular.h
include/Algo/Multiresolution/Map2MR/map2MR_PrimalRegular.h
+4
-0
include/Algo/Multiresolution/Map2MR/map2MR_PrimalRegular.hpp
include/Algo/Multiresolution/Map2MR/map2MR_PrimalRegular.hpp
+8
-3
include/Algo/Multiresolution/Map3MR/Filters/bertram.h
include/Algo/Multiresolution/Map3MR/Filters/bertram.h
+519
-114
include/Algo/Multiresolution/Map3MR/Filters/lerp.h
include/Algo/Multiresolution/Map3MR/Filters/lerp.h
+34
-10
include/Algo/Multiresolution/Map3MR/map3MR_PrimalAdapt.h
include/Algo/Multiresolution/Map3MR/map3MR_PrimalAdapt.h
+49
-56
include/Algo/Multiresolution/Map3MR/map3MR_PrimalAdapt.hpp
include/Algo/Multiresolution/Map3MR/map3MR_PrimalAdapt.hpp
+234
-340
include/Algo/Multiresolution/Map3MR/map3MR_PrimalRegular.h
include/Algo/Multiresolution/Map3MR/map3MR_PrimalRegular.h
+2
-0
include/Algo/Multiresolution/Map3MR/map3MR_PrimalRegular.hpp
include/Algo/Multiresolution/Map3MR/map3MR_PrimalRegular.hpp
+27
-25
No files found.
include/Algo/Modelisation/tetrahedralization.hpp
View file @
bb982acb
...
...
@@ -443,8 +443,10 @@ void swapGen3To2(typename PFP::MAP& map, Dart d)
template
<
typename
PFP
>
void
swapGen2To3
(
typename
PFP
::
MAP
&
map
,
Dart
d
)
{
unsigned
int
n
=
map
.
edgeDegree
(
d
);
//- a single 2-3 swap, followed by n − 3 3-2 swaps, or
//
–
a single 4-4 swap, followed by n − 4 3-2 swaps.
//
-
a single 4-4 swap, followed by n − 4 3-2 swaps.
}
...
...
include/Algo/Multiresolution/Map2MR/Filters/bertram.h
0 → 100644
View file @
bb982acb
/*******************************************************************************
* CGoGN: Combinatorial and Geometric modeling with Generic N-dimensional Maps *
* version 0.1 *
* Copyright (C) 2009-2012, IGG Team, LSIIT, University of Strasbourg *
* *
* This library is free software; you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as published by the *
* Free Software Foundation; either version 2.1 of the License, or (at your *
* option) any later version. *
* *
* This library is distributed in the hope that it will be useful, but WITHOUT *
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or *
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License *
* for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library; if not, write to the Free Software Foundation, *
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
* *
* Web site: http://cgogn.unistra.fr/ *
* Contact information: cgogn@unistra.fr *
* *
*******************************************************************************/
#ifndef __3MR_BERTRAM_FILTER__
#define __3MR_BERTRAM_FILTER__
#include <cmath>
#include "Algo/Geometry/centroid.h"
#include "Algo/Modelisation/tetrahedralization.h"
#include "Algo/Multiresolution/filter.h"
namespace
CGoGN
{
namespace
Algo
{
namespace
MR
{
namespace
Primal
{
namespace
Filters
{
/*******************************************************************************
* Without features preserving
*******************************************************************************/
//
// Synthesis
//
//w-lift(a)
template
<
typename
PFP
>
class
Ber02OddSynthesisFilter
:
public
Filter
{
protected:
typename
PFP
::
MAP
&
m_map
;
VertexAttribute
<
typename
PFP
::
VEC3
>&
m_position
;
typename
PFP
::
VEC3
::
DATA_TYPE
m_a
;
public:
Ber02OddSynthesisFilter
(
typename
PFP
::
MAP
&
m
,
VertexAttribute
<
typename
PFP
::
VEC3
>&
p
,
typename
PFP
::
VEC3
::
DATA_TYPE
a
)
:
m_map
(
m
),
m_position
(
p
),
m_a
(
a
)
{}
void
operator
()
()
{
TraversorF
<
typename
PFP
::
MAP
>
travF
(
m_map
)
;
for
(
Dart
d
=
travF
.
begin
();
d
!=
travF
.
end
();
d
=
travF
.
next
())
{
typename
PFP
::
VEC3
vf
(
0.0
);
typename
PFP
::
VEC3
ef
(
0.0
);
unsigned
int
count
=
0
;
Traversor2FE
<
typename
PFP
::
MAP
>
travFE
(
m_map
,
d
);
for
(
Dart
dit
=
travFE
.
begin
();
dit
!=
travFE
.
end
();
dit
=
travFE
.
next
())
{
vf
+=
m_position
[
dit
];
m_map
.
incCurrentLevel
();
ef
+=
m_position
[
m_map
.
phi1
(
dit
)];
m_map
.
decCurrentLevel
();
++
count
;
}
ef
/=
count
;
ef
*=
4.0
*
m_a
;
vf
/=
count
;
vf
*=
4.0
*
m_a
*
m_a
;
m_map
.
incCurrentLevel
()
;
Dart
midF
=
m_map
.
phi1
(
m_map
.
phi1
(
d
));
m_position
[
midF
]
+=
vf
+
ef
;
m_map
.
decCurrentLevel
()
;
}
TraversorE
<
typename
PFP
::
MAP
>
travE
(
m_map
)
;
for
(
Dart
d
=
travE
.
begin
();
d
!=
travE
.
end
();
d
=
travE
.
next
())
{
typename
PFP
::
VEC3
ve
=
(
m_position
[
d
]
+
m_position
[
m_map
.
phi1
(
d
)])
*
typename
PFP
::
REAL
(
0.5
);
ve
*=
2.0
*
m_a
;
m_map
.
incCurrentLevel
()
;
Dart
midV
=
m_map
.
phi1
(
d
)
;
m_position
[
midV
]
+=
ve
;
m_map
.
decCurrentLevel
()
;
}
}
}
;
// s-lift(a)
template
<
typename
PFP
>
class
Ber02EvenSynthesisFilter
:
public
Filter
{
protected:
typename
PFP
::
MAP
&
m_map
;
VertexAttribute
<
typename
PFP
::
VEC3
>&
m_position
;
typename
PFP
::
VEC3
::
DATA_TYPE
m_a
;
bool
m_threshold
;
unsigned
int
m_current
;
unsigned
int
percentWanted
;
public:
Ber02EvenSynthesisFilter
(
typename
PFP
::
MAP
&
m
,
VertexAttribute
<
typename
PFP
::
VEC3
>&
p
,
typename
PFP
::
VEC3
::
DATA_TYPE
a
)
:
m_map
(
m
),
m_position
(
p
),
m_a
(
a
),
m_threshold
(
false
)
{}
// void activateThreshold(bool b) { m_threshold = b; percentWanted = m_map.getMaxLevel() * 30 / 100 ; }
void
operator
()
()
{
TraversorV
<
typename
PFP
::
MAP
>
travV
(
m_map
);
for
(
Dart
d
=
travV
.
begin
()
;
d
!=
travV
.
end
()
;
d
=
travV
.
next
())
{
// if(m_threshold && m_current > percentWanted)
// {
// m_position[d] += typename PFP::VEC3(0.0);
// }
// else
// {
typename
PFP
::
VEC3
ev
(
0.0
);
typename
PFP
::
VEC3
fv
(
0.0
);
if
(
m_map
.
isBoundaryVertex
(
d
))
{
Dart
db
=
m_map
.
findBoundaryEdgeOfVertex
(
d
);
m_map
.
incCurrentLevel
()
;
ev
=
(
m_position
[
m_map
.
phi1
(
db
)]
+
m_position
[
m_map
.
phi_1
(
db
)]);
m_map
.
decCurrentLevel
()
;
ev
*=
m_a
;
m_position
[
d
]
+=
ev
;
}
else
{
unsigned
int
count
=
0
;
Traversor2VF
<
typename
PFP
::
MAP
>
travVF
(
m_map
,
d
);
for
(
Dart
dit
=
travVF
.
begin
();
dit
!=
travVF
.
end
()
;
dit
=
travVF
.
next
())
{
m_map
.
incCurrentLevel
()
;
Dart
midEdgeV
=
m_map
.
phi1
(
dit
);
ev
+=
m_position
[
midEdgeV
];
fv
+=
m_position
[
m_map
.
phi1
(
midEdgeV
)];
m_map
.
decCurrentLevel
()
;
++
count
;
}
fv
/=
count
;
fv
*=
4
*
m_a
*
m_a
;
ev
/=
count
;
ev
*=
4
*
m_a
;
m_position
[
d
]
+=
fv
+
ev
;
}
// }
}
TraversorE
<
typename
PFP
::
MAP
>
travE
(
m_map
);
for
(
Dart
d
=
travE
.
begin
()
;
d
!=
travE
.
end
()
;
d
=
travE
.
next
())
{
// if(m_threshold && m_current > percentWanted)
// {
// m_map.incCurrentLevel() ;
// Dart midF = m_map.phi1(d);
// m_position[midF] += typename PFP::VEC3(0.0);
// m_map.decCurrentLevel() ;
// }
// else
// {
unsigned
int
count
=
0
;
typename
PFP
::
VEC3
fe
(
0.0
);
Traversor2EF
<
typename
PFP
::
MAP
>
travEF
(
m_map
,
d
);
for
(
Dart
dit
=
travEF
.
begin
()
;
dit
!=
travEF
.
end
()
;
dit
=
travEF
.
next
())
{
m_map
.
incCurrentLevel
()
;
Dart
midV
=
m_map
.
phi1
(
m_map
.
phi1
(
dit
));
fe
+=
m_position
[
midV
];
m_map
.
decCurrentLevel
()
;
++
count
;
}
fe
/=
count
;
fe
*=
2
*
m_a
;
m_map
.
incCurrentLevel
()
;
Dart
midF
=
m_map
.
phi1
(
d
);
m_position
[
midF
]
+=
fe
;
m_map
.
decCurrentLevel
()
;
// }
}
// if(m_threshold && m_current < percentWanted)
// {
// ++m_current;
// }
}
}
;
// s-scale(a)
template
<
typename
PFP
>
class
Ber02ScaleSynthesisFilter
:
public
Filter
{
protected:
typename
PFP
::
MAP
&
m_map
;
VertexAttribute
<
typename
PFP
::
VEC3
>&
m_position
;
typename
PFP
::
VEC3
::
DATA_TYPE
m_a
;
public:
Ber02ScaleSynthesisFilter
(
typename
PFP
::
MAP
&
m
,
VertexAttribute
<
typename
PFP
::
VEC3
>&
p
,
typename
PFP
::
VEC3
::
DATA_TYPE
a
)
:
m_map
(
m
),
m_position
(
p
),
m_a
(
a
)
{}
void
operator
()
()
{
TraversorV
<
typename
PFP
::
MAP
>
travV
(
m_map
)
;
for
(
Dart
d
=
travV
.
begin
();
d
!=
travV
.
end
();
d
=
travV
.
next
())
{
if
(
m_map
.
isBoundaryVertex
(
d
))
m_position
[
d
]
*=
m_a
;
else
m_position
[
d
]
*=
m_a
*
m_a
;
}
TraversorE
<
typename
PFP
::
MAP
>
travE
(
m_map
)
;
for
(
Dart
d
=
travE
.
begin
();
d
!=
travE
.
end
();
d
=
travE
.
next
())
{
m_map
.
incCurrentLevel
()
;
Dart
midE
=
m_map
.
phi1
(
d
);
if
(
!
m_map
.
isBoundaryVertex
(
midE
))
m_position
[
midE
]
*=
m_a
;
m_map
.
decCurrentLevel
()
;
}
}
}
;
//
// Analysis
//
//w-lift(a)
template
<
typename
PFP
>
class
Ber02OddAnalysisFilter
:
public
Filter
{
protected:
typename
PFP
::
MAP
&
m_map
;
VertexAttribute
<
typename
PFP
::
VEC3
>&
m_position
;
typename
PFP
::
VEC3
::
DATA_TYPE
m_a
;
public:
Ber02OddAnalysisFilter
(
typename
PFP
::
MAP
&
m
,
VertexAttribute
<
typename
PFP
::
VEC3
>&
p
,
typename
PFP
::
VEC3
::
DATA_TYPE
a
)
:
m_map
(
m
),
m_position
(
p
),
m_a
(
a
)
{}
void
operator
()
()
{
TraversorE
<
typename
PFP
::
MAP
>
travE
(
m_map
)
;
for
(
Dart
d
=
travE
.
begin
();
d
!=
travE
.
end
();
d
=
travE
.
next
())
{
typename
PFP
::
VEC3
ve
=
(
m_position
[
d
]
+
m_position
[
m_map
.
phi1
(
d
)])
*
typename
PFP
::
REAL
(
0.5
);
ve
*=
2.0
*
m_a
;
m_map
.
incCurrentLevel
()
;
Dart
midV
=
m_map
.
phi1
(
d
)
;
m_position
[
midV
]
-=
ve
;
m_map
.
decCurrentLevel
()
;
}
TraversorF
<
typename
PFP
::
MAP
>
travF
(
m_map
)
;
for
(
Dart
d
=
travF
.
begin
();
d
!=
travF
.
end
();
d
=
travF
.
next
())
{
typename
PFP
::
VEC3
vf
(
0.0
);
typename
PFP
::
VEC3
ef
(
0.0
);
unsigned
int
count
=
0
;
Traversor2FE
<
typename
PFP
::
MAP
>
travFE
(
m_map
,
d
);
for
(
Dart
dit
=
travFE
.
begin
();
dit
!=
travFE
.
end
();
dit
=
travFE
.
next
())
{
vf
+=
m_position
[
dit
];
m_map
.
incCurrentLevel
();
ef
+=
m_position
[
m_map
.
phi1
(
dit
)];
m_map
.
decCurrentLevel
();
++
count
;
}
ef
/=
count
;
ef
*=
4.0
*
m_a
;
vf
/=
count
;
vf
*=
4.0
*
m_a
*
m_a
;
m_map
.
incCurrentLevel
()
;
Dart
midF
=
m_map
.
phi1
(
m_map
.
phi1
(
d
));
m_position
[
midF
]
-=
vf
+
ef
;
m_map
.
decCurrentLevel
()
;
}
}
};
// s-lift(a)
template
<
typename
PFP
>
class
Ber02EvenAnalysisFilter
:
public
Filter
{
protected:
typename
PFP
::
MAP
&
m_map
;
VertexAttribute
<
typename
PFP
::
VEC3
>&
m_position
;
typename
PFP
::
VEC3
::
DATA_TYPE
m_a
;
public:
Ber02EvenAnalysisFilter
(
typename
PFP
::
MAP
&
m
,
VertexAttribute
<
typename
PFP
::
VEC3
>&
p
,
typename
PFP
::
VEC3
::
DATA_TYPE
a
)
:
m_map
(
m
),
m_position
(
p
),
m_a
(
a
)
{}
void
operator
()
()
{
TraversorE
<
typename
PFP
::
MAP
>
travE
(
m_map
);
for
(
Dart
d
=
travE
.
begin
()
;
d
!=
travE
.
end
()
;
d
=
travE
.
next
())
{
if
(
!
m_map
.
isBoundaryEdge
(
d
))
{
unsigned
int
count
=
0
;
typename
PFP
::
VEC3
fe
(
0
);
Traversor2EF
<
typename
PFP
::
MAP
>
travEF
(
m_map
,
d
);
for
(
Dart
dit
=
travEF
.
begin
()
;
dit
!=
travEF
.
end
()
;
dit
=
travEF
.
next
())
{
m_map
.
incCurrentLevel
()
;
Dart
midV
=
m_map
.
phi1
(
m_map
.
phi1
(
dit
));
fe
+=
m_position
[
midV
];
m_map
.
decCurrentLevel
()
;
++
count
;
}
fe
/=
count
;
fe
*=
2
*
m_a
;
m_map
.
incCurrentLevel
()
;
Dart
midF
=
m_map
.
phi1
(
d
);
m_position
[
midF
]
-=
fe
;
m_map
.
decCurrentLevel
()
;
}
}
TraversorV
<
typename
PFP
::
MAP
>
travV
(
m_map
);
for
(
Dart
d
=
travV
.
begin
()
;
d
!=
travV
.
end
()
;
d
=
travV
.
next
())
{
typename
PFP
::
VEC3
ev
(
0.0
);
typename
PFP
::
VEC3
fv
(
0.0
);
if
(
m_map
.
isBoundaryVertex
(
d
))
{
Dart
db
=
m_map
.
findBoundaryEdgeOfVertex
(
d
);
m_map
.
incCurrentLevel
()
;
ev
=
(
m_position
[
m_map
.
phi1
(
db
)]
+
m_position
[
m_map
.
phi_1
(
db
)]);
m_map
.
decCurrentLevel
()
;
ev
*=
m_a
;
m_position
[
d
]
-=
ev
;
}
else
{
unsigned
int
count
=
0
;
Traversor2VF
<
typename
PFP
::
MAP
>
travVF
(
m_map
,
d
);
for
(
Dart
dit
=
travVF
.
begin
();
dit
!=
travVF
.
end
()
;
dit
=
travVF
.
next
())
{
m_map
.
incCurrentLevel
()
;
Dart
midEdgeV
=
m_map
.
phi1
(
dit
);
ev
+=
m_position
[
midEdgeV
];
fv
+=
m_position
[
m_map
.
phi1
(
midEdgeV
)];
m_map
.
decCurrentLevel
()
;
++
count
;
}
fv
/=
count
;
fv
*=
4
*
m_a
*
m_a
;
ev
/=
count
;
ev
*=
4
*
m_a
;
m_position
[
d
]
-=
fv
+
ev
;
}
}
}
};
// s-scale(a)
template
<
typename
PFP
>
class
Ber02ScaleAnalysisFilter
:
public
Filter
{
protected:
typename
PFP
::
MAP
&
m_map
;
VertexAttribute
<
typename
PFP
::
VEC3
>&
m_position
;
typename
PFP
::
VEC3
::
DATA_TYPE
m_a
;
public:
Ber02ScaleAnalysisFilter
(
typename
PFP
::
MAP
&
m
,
VertexAttribute
<
typename
PFP
::
VEC3
>&
p
,
typename
PFP
::
VEC3
::
DATA_TYPE
a
)
:
m_map
(
m
),
m_position
(
p
),
m_a
(
a
)
{}
void
operator
()
()
{
TraversorV
<
typename
PFP
::
MAP
>
travV
(
m_map
)
;
for
(
Dart
d
=
travV
.
begin
();
d
!=
travV
.
end
();
d
=
travV
.
next
())
{
if
(
m_map
.
isBoundaryVertex
(
d
))
m_position
[
d
]
/=
m_a
;
else
m_position
[
d
]
/=
m_a
*
m_a
;
}
TraversorE
<
typename
PFP
::
MAP
>
travE
(
m_map
)
;
for
(
Dart
d
=
travE
.
begin
();
d
!=
travE
.
end
();
d
=
travE
.
next
())
{
m_map
.
incCurrentLevel
()
;
Dart
midE
=
m_map
.
phi1
(
d
);
if
(
!
m_map
.
isBoundaryVertex
(
midE
))
m_position
[
midE
]
/=
m_a
;
m_map
.
decCurrentLevel
()
;
}
}
};
/*************************************************************************************
* With features preserving
*************************************************************************************/
//
// Synthesis
//
//w-lift(a)
template
<
typename
PFP
>
class
Ber02OddSynthesisFilterFeatures
:
public
Ber02OddSynthesisFilter
<
PFP
>
{
protected:
const
VertexAttribute
<
unsigned
int
>&
m_Vfeature
;
const
EdgeAttribute
<
unsigned
int
>&
m_Efeature
;
public:
Ber02OddSynthesisFilterFeatures
(
typename
PFP
::
MAP
&
m
,
VertexAttribute
<
typename
PFP
::
VEC3
>&
p
,
const
VertexAttribute
<
unsigned
int
>
v
,
const
EdgeAttribute
<
unsigned
int
>
e
,
typename
PFP
::
VEC3
::
DATA_TYPE
a
)
:
Ber02OddSynthesisFilter
<
PFP
>
(
m
,
p
,
a
),
m_Vfeature
(
v
),
m_Efeature
(
e
)
{}
}
;
// s-lift(a)
template
<
typename
PFP
>
class
Ber02EvenSynthesisFilterFeatures
:
public
Filter
{
protected:
typename
PFP
::
MAP
&
m_map
;
VertexAttribute
<
typename
PFP
::
VEC3
>&
m_position
;
const
VertexAttribute
<
unsigned
int
>&
m_Vfeature
;
const
EdgeAttribute
<
unsigned
int
>&
m_Efeature
;
typename
PFP
::
VEC3
::
DATA_TYPE
m_a
;
public:
Ber02EvenSynthesisFilterFeatures
(
typename
PFP
::
MAP
&
m
,
VertexAttribute
<
typename
PFP
::
VEC3
>&
p
,
const
VertexAttribute
<
unsigned
int
>
v
,
const
EdgeAttribute
<
unsigned
int
>
e
,
typename
PFP
::
VEC3
::
DATA_TYPE
a
)
:
m_map
(
m
),
m_position
(
p
),
m_Vfeature
(
v
),
m_Efeature
(
e
),
m_a
(
a
)
{}
void
operator
()
()
{
TraversorV
<
typename
PFP
::
MAP
>
travV
(
m_map
);
for
(
Dart
d
=
travV
.
begin
()
;
d
!=
travV
.
end
()
;
d
=
travV
.
next
())
{
if
(
m_Vfeature
[
d
]
==
2
)
//is a part of a face-feature
{
unsigned
int
count
=
0
;
typename
PFP
::
VEC3
ev
(
0.0
);
typename
PFP
::
VEC3
fv
(
0.0
);
Traversor2VF
<
typename
PFP
::
MAP
>
travVF
(
m_map
,
d
);
for
(
Dart
dit
=
travVF
.
begin
();
dit
!=
travVF
.
end
()
;
dit
=
travVF
.
next
())
{
m_map
.
incCurrentLevel
()
;
Dart
midEdgeV
=
m_map
.
phi1
(
dit
);
ev
+=
m_position
[
midEdgeV
];
fv
+=
m_position
[
m_map
.
phi1
(
midEdgeV
)];
m_map
.
decCurrentLevel
()
;
++
count
;
}
fv
/=
count
;
fv
*=
4
*
m_a
*
m_a
;
ev
/=
count
;
ev
*=
4
*
m_a
;
m_position
[
d
]
+=
fv
+
ev
;
}
else
if
(
m_Vfeature
[
d
]
==
1
)
//is a part of an edge-feature
{
unsigned
int
count
=
0
;
typename
PFP
::
VEC3
ev
(
0.0
);
Traversor2VF
<
typename
PFP
::
MAP
>
travVF
(
m_map
,
d
);
for
(
Dart
dit
=
travVF
.
begin
();
dit
!=
travVF
.
end
()
;
dit
=
travVF
.
next
())
{
m_map
.
incCurrentLevel
()
;
Dart
midEdgeV
=
m_map
.
phi1
(
dit
);
if
(
m_Vfeature
[
midEdgeV
]
==
1
)
{
ev
+=
m_position
[
midEdgeV
];
++
count
;
}
m_map
.
decCurrentLevel
()
;
}
ev
/=
count
;
ev
*=
2
*
m_a
;
m_position
[
d
]
+=
ev
;
}
else
{
m_position
[
d
]
+=
0.0
;
}
}
TraversorE
<
typename
PFP
::
MAP
>
travE
(
m_map
);
for
(
Dart
d
=
travE
.
begin
()
;
d
!=
travE
.
end
()
;
d
=
travE
.
next
())
{
if
(
m_Efeature
[
d
]
==
2
)
{
unsigned
int
count
=
0
;
typename
PFP
::
VEC3
fe
(
0
);
Traversor2EF
<
typename
PFP
::
MAP
>
travEF
(
m_map
,
d
);
for
(
Dart
dit
=
travEF
.
begin
()
;
dit
!=
travEF
.
end
()
;
dit
=
travEF
.
next
())
{
m_map
.
incCurrentLevel
()
;
Dart
midV
=
m_map
.
phi1
(
m_map
.
phi1
(
dit
));
fe
+=
m_position
[
midV
];
m_map
.
decCurrentLevel
()
;
++
count
;
}
fe
/=
count
;
fe
*=
2
*
m_a
;
m_map
.
incCurrentLevel
()
;
Dart
midF
=
m_map
.
phi1
(
d
);
m_position
[
midF
]
+=
fe
;
m_map
.
decCurrentLevel
()
;
}