Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
f618e482
Commit
f618e482
authored
14 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
cleanup
parent
6be53fb2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Mesh/BoundaryLayers.cpp
+30
-38
30 additions, 38 deletions
Mesh/BoundaryLayers.cpp
with
30 additions
and
38 deletions
Mesh/BoundaryLayers.cpp
+
30
−
38
View file @
f618e482
...
@@ -56,6 +56,32 @@ static void addExtrudeNormals(std::vector<T*> &elements, int invert,
...
@@ -56,6 +56,32 @@ static void addExtrudeNormals(std::vector<T*> &elements, int invert,
}
}
}
}
template
<
class
T
>
static
void
addExtrudeNormals
(
std
::
set
<
T
*>
&
entities
,
std
::
map
<
int
,
bool
>
&
invert
,
std
::
map
<
int
,
int
>
&
useView
)
{
for
(
typename
std
::
set
<
T
*>::
iterator
it
=
entities
.
begin
();
it
!=
entities
.
end
();
it
++
){
T
*
ge
=
*
it
;
int
inv
=
invert
.
count
(
ge
->
tag
());
OctreePost
*
octree
=
0
;
#if defined(HAVE_POST)
if
(
useView
.
count
(
ge
->
tag
())){
int
index
=
useView
[
ge
->
tag
()];
if
(
index
>=
0
&&
index
<
PView
::
list
.
size
())
octree
=
new
OctreePost
(
PView
::
list
[
index
]);
else
Msg
::
Error
(
"Unknown View[%d]: using normals instead"
,
index
);
}
#endif
if
(
ge
->
dim
()
==
1
)
addExtrudeNormals
(((
GEdge
*
)
ge
)
->
lines
,
inv
,
octree
);
else
if
(
ge
->
dim
()
==
2
){
addExtrudeNormals
(((
GFace
*
)
ge
)
->
triangles
,
inv
,
octree
);
addExtrudeNormals
(((
GFace
*
)
ge
)
->
quadrangles
,
inv
,
octree
);
}
}
}
int
Mesh2DWithBoundaryLayers
(
GModel
*
m
)
int
Mesh2DWithBoundaryLayers
(
GModel
*
m
)
{
{
std
::
set
<
GFace
*>
sourceFaces
,
otherFaces
;
std
::
set
<
GFace
*>
sourceFaces
,
otherFaces
;
...
@@ -124,44 +150,10 @@ int Mesh2DWithBoundaryLayers(GModel *m)
...
@@ -124,44 +150,10 @@ int Mesh2DWithBoundaryLayers(GModel *m)
// compute a normal field for all the source edges or faces
// compute a normal field for all the source edges or faces
if
(
ExtrudeParams
::
normals
)
delete
ExtrudeParams
::
normals
;
if
(
ExtrudeParams
::
normals
)
delete
ExtrudeParams
::
normals
;
ExtrudeParams
::
normals
=
new
smooth_data
();
ExtrudeParams
::
normals
=
new
smooth_data
();
if
(
sourceFaces
.
empty
())
if
(
sourceFaces
.
empty
()){
addExtrudeNormals
(
sourceEdges
,
sourceEdgeInvert
,
sourceEdgeUseView
);
for
(
std
::
set
<
GEdge
*>::
iterator
it
=
sourceEdges
.
begin
();
else
it
!=
sourceEdges
.
end
();
it
++
){
addExtrudeNormals
(
sourceFaces
,
sourceFaceInvert
,
sourceFaceUseView
);
GEdge
*
ge
=
*
it
;
int
invert
=
sourceEdgeInvert
.
count
(
ge
->
tag
());
OctreePost
*
octree
=
0
;
#if defined(HAVE_POST)
if
(
sourceEdgeUseView
.
count
(
ge
->
tag
())){
int
index
=
sourceEdgeUseView
[
ge
->
tag
()];
if
(
index
>=
0
&&
index
<
PView
::
list
.
size
())
octree
=
new
OctreePost
(
PView
::
list
[
index
]);
else
Msg
::
Error
(
"Unknown View[%d]: using normals instead"
,
index
);
}
#endif
addExtrudeNormals
(
ge
->
lines
,
invert
,
octree
);
}
}
else
{
for
(
std
::
set
<
GFace
*>::
iterator
it
=
sourceFaces
.
begin
();
it
!=
sourceFaces
.
end
();
it
++
){
GFace
*
gf
=
*
it
;
int
invert
=
sourceFaceInvert
.
count
(
gf
->
tag
());
OctreePost
*
octree
=
0
;
#if defined(HAVE_POST)
if
(
sourceFaceUseView
.
count
(
gf
->
tag
())){
int
index
=
sourceFaceUseView
[
gf
->
tag
()];
if
(
index
>=
0
&&
index
<
PView
::
list
.
size
())
octree
=
new
OctreePost
(
PView
::
list
[
index
]);
else
Msg
::
Error
(
"Unknown View[%d]: using normals instead"
,
index
);
}
#endif
addExtrudeNormals
(
gf
->
triangles
,
invert
,
octree
);
addExtrudeNormals
(
gf
->
quadrangles
,
invert
,
octree
);
}
}
if
(
sourceEdgeUseView
.
empty
()
&&
sourceFaceUseView
.
empty
())
if
(
sourceEdgeUseView
.
empty
()
&&
sourceFaceUseView
.
empty
())
ExtrudeParams
::
normals
->
normalize
();
ExtrudeParams
::
normals
->
normalize
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment