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
8fe8b8c9
Commit
8fe8b8c9
authored
14 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
more
parent
4a28e969
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Geo/GModel.cpp
+5
-1
5 additions, 1 deletion
Geo/GModel.cpp
with
5 additions
and
1 deletion
Geo/GModel.cpp
+
5
−
1
View file @
8fe8b8c9
...
@@ -1194,6 +1194,8 @@ void GModel::createTopologyFromMesh()
...
@@ -1194,6 +1194,8 @@ void GModel::createTopologyFromMesh()
removeDuplicateMeshVertices
(
CTX
::
instance
()
->
geom
.
tolerance
);
removeDuplicateMeshVertices
(
CTX
::
instance
()
->
geom
.
tolerance
);
makeDiscreteFacesSimplyConnected
();
// create topology for all discrete regions
// create topology for all discrete regions
std
::
vector
<
discreteRegion
*>
discRegions
;
std
::
vector
<
discreteRegion
*>
discRegions
;
for
(
riter
it
=
firstRegion
();
it
!=
lastRegion
();
it
++
)
for
(
riter
it
=
firstRegion
();
it
!=
lastRegion
();
it
++
)
...
@@ -1201,7 +1203,9 @@ void GModel::createTopologyFromMesh()
...
@@ -1201,7 +1203,9 @@ void GModel::createTopologyFromMesh()
discRegions
.
push_back
((
discreteRegion
*
)
*
it
);
discRegions
.
push_back
((
discreteRegion
*
)
*
it
);
createTopologyFromRegions
(
discRegions
);
createTopologyFromRegions
(
discRegions
);
makeDiscreteFacesSimplyConnected
();
// FIXME: need to split new discrete faces created in
// createTopoFromRegions, before creating regs
// makeDiscreteFacesSimplyConnected();
// create topology for all discrete faces
// create topology for all discrete faces
std
::
vector
<
discreteFace
*>
discFaces
;
std
::
vector
<
discreteFace
*>
discFaces
;
...
...
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