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
Etienne Schmitt
CGoGN
Commits
da400179
Commit
da400179
authored
Feb 11, 2014
by
thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug in Traversor2FFaV
parent
29179079
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
7 deletions
+11
-7
include/Topology/generic/traversor2.h
include/Topology/generic/traversor2.h
+1
-0
include/Topology/generic/traversor2.hpp
include/Topology/generic/traversor2.hpp
+10
-7
No files found.
include/Topology/generic/traversor2.h
View file @
da400179
...
...
@@ -241,6 +241,7 @@ public:
}
;
// Traverse the faces adjacent to a given face through sharing a common edge
// Warning mult-incidence is not managed (some faces can be send several times)
template
<
typename
MAP
>
class
Traversor2FFaE
//: public Traversor<MAP>
{
...
...
include/Topology/generic/traversor2.hpp
View file @
da400179
...
...
@@ -530,12 +530,12 @@ Traversor2FFaV<MAP>::Traversor2FFaV(const MAP& map, Dart dart) : m(map),m_QLT(NU
else
{
start
=
m
.
phi2
(
m
.
phi_1
(
m
.
phi2
(
m
.
phi_1
(
dart
))))
;
current
=
start
;
if
(
start
==
dart
)
while
(
start
==
dart
)
{
stop
=
m
.
phi2
(
m
.
phi_1
(
dart
))
;
start
=
next
(
)
;
dart
=
m
.
phi1
(
dart
)
;
start
=
m
.
phi2
(
m
.
phi_1
(
m
.
phi2
(
m
.
phi_1
(
dart
)))
)
;
}
current
=
start
;
stop
=
dart
;
if
(
m
.
isBoundaryMarked2
(
start
))
start
=
next
()
;
...
...
@@ -577,12 +577,15 @@ Dart Traversor2FFaV<MAP>::next()
current
=
m
.
phi2
(
m
.
phi_1
(
m
.
phi2
(
m
.
phi_1
(
d
))))
;
if
(
current
==
d
)
{
stop
=
m
.
phi2
(
m
.
phi_1
(
d
))
;
stop
=
m
.
phi1
(
d
);
current
=
m
.
phi2
(
d
);
return
next
()
;
}
stop
=
d
;
if
(
m
.
isBoundaryMarked2
(
current
))
return
next
()
;
}
if
(
m
.
isBoundaryMarked2
(
current
))
{
return
next
()
;
}
if
(
current
==
start
)
current
=
NIL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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