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
Package registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Romin Tomasetti
gmsh
Commits
a0e0ff98
Commit
a0e0ff98
authored
Apr 26, 2022
by
Jonathan Lambrechts
Browse files
Options
Downloads
Patches
Plain Diff
fix vertex->edge adjacency when reading msh (v4) files
parent
73b3fea9
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/geo/GEdge.h
+2
-2
2 additions, 2 deletions
src/geo/GEdge.h
with
2 additions
and
2 deletions
src/geo/GEdge.h
+
2
−
2
View file @
a0e0ff98
...
...
@@ -58,8 +58,8 @@ public:
virtual
void
deleteMesh
();
// get the start/end vertices of the edge
void
setBeginVertex
(
GVertex
*
gv
)
{
_v0
=
gv
;
}
void
setEndVertex
(
GVertex
*
gv
)
{
_v1
=
gv
;
}
void
setBeginVertex
(
GVertex
*
gv
)
{
_v0
=
gv
;
gv
->
addEdge
(
this
);
}
void
setEndVertex
(
GVertex
*
gv
)
{
_v1
=
gv
;
gv
->
addEdge
(
this
);
}
virtual
GVertex
*
getBeginVertex
()
const
{
return
_v0
;
}
virtual
GVertex
*
getEndVertex
()
const
{
return
_v1
;
}
void
setVertex
(
GVertex
*
const
f
,
const
int
orientation
)
...
...
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