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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hurstel
CGoGN
Commits
2aa9ef9a
Commit
2aa9ef9a
authored
Aug 03, 2012
by
Pierre Kraemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Traversor2VVaF debug (missed a vertex after boundary face jump)
parent
878c41f4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
Apps/Examples/viewer.cpp
Apps/Examples/viewer.cpp
+1
-1
include/Algo/Export/exportPov.h
include/Algo/Export/exportPov.h
+1
-1
include/Topology/generic/traversor2.hpp
include/Topology/generic/traversor2.hpp
+5
-1
No files found.
Apps/Examples/viewer.cpp
View file @
2aa9ef9a
...
...
@@ -17,7 +17,7 @@
* 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/ *
* Web site: http://cgogn.unistra.fr/
*
* Contact information: cgogn@unistra.fr *
* *
*******************************************************************************/
...
...
include/Algo/Export/exportPov.h
View file @
2aa9ef9a
...
...
@@ -41,7 +41,7 @@ void exportMeshPlain(std::ofstream& out, typename PFP::MAP& map, VertexAttribute
TraversorF
<
typename
PFP
::
MAP
>
travF
(
map
);
for
(
Dart
d
=
travF
.
begin
()
;
d
!=
travF
.
end
()
;
travF
.
next
(
d
))
for
(
Dart
d
=
travF
.
begin
()
;
d
!=
travF
.
end
()
;
d
=
travF
.
next
(
))
{
if
(
good
(
d
))
{
...
...
include/Topology/generic/traversor2.hpp
View file @
2aa9ef9a
...
...
@@ -166,8 +166,12 @@ Dart Traversor2VVaF<MAP>::next()
{
Dart
d
=
m
.
phi2
(
m
.
phi_1
(
current
))
;
if
(
m
.
isBoundaryMarked
(
d
))
// jump over a boundary face
{
d
=
m
.
phi2
(
m
.
phi_1
(
d
))
;
current
=
m
.
phi1
(
m
.
phi1
(
d
))
;
current
=
m
.
phi1
(
d
);
}
else
current
=
m
.
phi1
(
m
.
phi1
(
d
))
;
if
(
current
==
d
)
current
=
m
.
phi1
(
d
)
;
stop
=
d
;
...
...
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