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
Thomas Pitiot
CGoGN
Commits
163dc375
Commit
163dc375
authored
Jul 30, 2014
by
Sylvain Thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unnecessary forboundary parameter
parent
ccbffacd
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
11 additions
and
11 deletions
+11
-11
include/Topology/gmap/embeddedGMap3.h
include/Topology/gmap/embeddedGMap3.h
+1
-1
include/Topology/gmap/gmap3.h
include/Topology/gmap/gmap3.h
+1
-1
include/Topology/gmap/gmap3.hpp
include/Topology/gmap/gmap3.hpp
+1
-1
include/Topology/map/embeddedMap3.h
include/Topology/map/embeddedMap3.h
+1
-1
include/Topology/map/map3.h
include/Topology/map/map3.h
+1
-1
include/Topology/map/map3.hpp
include/Topology/map/map3.hpp
+1
-1
src/Topology/gmap/embeddedGMap2.cpp
src/Topology/gmap/embeddedGMap2.cpp
+1
-1
src/Topology/gmap/embeddedGMap3.cpp
src/Topology/gmap/embeddedGMap3.cpp
+2
-2
src/Topology/map/embeddedMap3.cpp
src/Topology/map/embeddedMap3.cpp
+2
-2
No files found.
include/Topology/gmap/embeddedGMap3.h
View file @
163dc375
...
...
@@ -94,7 +94,7 @@ public:
/**
* No attribute is attached to the new volume
*/
virtual
unsigned
int
closeHole
(
Dart
d
,
bool
forboundary
=
true
);
virtual
unsigned
int
closeHole
(
Dart
d
);
/*!
*
...
...
include/Topology/gmap/gmap3.h
View file @
163dc375
...
...
@@ -413,7 +413,7 @@ public:
* @param forboundary tag the created face as boundary (default is true)
* @return the degree of the created volume
*/
virtual
unsigned
int
closeHole
(
Dart
d
,
bool
forboundary
=
true
);
virtual
unsigned
int
closeHole
(
Dart
d
);
//! Close the map removing topological holes: DO NOT USE, only for import/creation algorithm
/*! Add volumes to the map that close every existing hole.
...
...
include/Topology/gmap/gmap3.hpp
View file @
163dc375
...
...
@@ -1204,7 +1204,7 @@ Dart GMap3<MAP_IMPL>::newBoundaryCycle(unsigned int nbE)
}
template
<
typename
MAP_IMPL
>
unsigned
int
GMap3
<
MAP_IMPL
>::
closeHole
(
Dart
d
,
bool
forboundary
)
unsigned
int
GMap3
<
MAP_IMPL
>::
closeHole
(
Dart
d
)
{
assert
(
beta3
(
d
)
==
d
);
// Nothing to close
DartMarkerStore
<
GMap3
<
MAP_IMPL
>
>
m
(
*
this
)
;
...
...
include/Topology/map/embeddedMap3.h
View file @
163dc375
...
...
@@ -134,7 +134,7 @@ public:
//!
/*! No attribute is attached to the new volume
*/
virtual
unsigned
int
closeHole
(
Dart
d
,
bool
forboundary
=
true
);
virtual
unsigned
int
closeHole
(
Dart
d
);
//!
/*!
...
...
include/Topology/map/map3.h
View file @
163dc375
...
...
@@ -483,7 +483,7 @@ public:
* @param forboundary tag the created face as boundary (default is true)
* @return the degree of the created volume
*/
virtual
unsigned
int
closeHole
(
Dart
d
,
bool
forboundary
=
true
);
virtual
unsigned
int
closeHole
(
Dart
d
);
//! Close the map removing topological holes: DO NOT USE, only for import/creation algorithm
/*! Add volumes to the map that close every existing hole.
...
...
include/Topology/map/map3.hpp
View file @
163dc375
...
...
@@ -1334,7 +1334,7 @@ Dart Map3<MAP_IMPL>::newBoundaryCycle(unsigned int nbE)
}
template <typename MAP_IMPL>
unsigned int Map3<MAP_IMPL>::closeHole(Dart d
, bool forboundary
)
unsigned int Map3<MAP_IMPL>::closeHole(Dart d)
{
assert(phi3(d) == d); // Nothing to close
DartMarkerStore< Map3<MAP_IMPL> > m(*this) ;
...
...
src/Topology/gmap/embeddedGMap2.cpp
View file @
163dc375
...
...
@@ -516,7 +516,7 @@ bool EmbeddedGMap2::mergeVolumes(Dart d, Dart e)
unsigned
int
EmbeddedGMap2
::
closeHole
(
Dart
d
,
bool
forboundary
)
{
unsigned
int
nbE
=
GMap2
::
closeHole
(
d
)
;
unsigned
int
nbE
=
GMap2
::
closeHole
(
d
,
forboundary
)
;
Dart
dd
=
phi2
(
d
)
;
Dart
it
=
dd
;
do
...
...
src/Topology/gmap/embeddedGMap3.cpp
View file @
163dc375
...
...
@@ -354,9 +354,9 @@ void EmbeddedGMap3::splitVolume(std::vector<Dart>& vd)
}
}
unsigned
int
EmbeddedGMap3
::
closeHole
(
Dart
d
,
bool
forboundary
)
unsigned
int
EmbeddedGMap3
::
closeHole
(
Dart
d
)
{
unsigned
int
nbF
=
GMap3
::
closeHole
(
d
,
forboundary
)
;
unsigned
int
nbF
=
GMap3
::
closeHole
(
d
)
;
DartMarkerStore
<
EmbeddedGMap3
>
mark
(
*
this
);
// Lock a marker
...
...
src/Topology/map/embeddedMap3.cpp
View file @
163dc375
...
...
@@ -556,9 +556,9 @@ Dart EmbeddedMap3::collapseVolume(Dart d, bool delDegenerateVolumes)
return
resV
;
}
unsigned
int
EmbeddedMap3
::
closeHole
(
Dart
d
,
bool
forboundary
)
unsigned
int
EmbeddedMap3
::
closeHole
(
Dart
d
)
{
unsigned
int
nbF
=
Map3
::
closeHole
(
d
,
forboundary
)
;
unsigned
int
nbF
=
Map3
::
closeHole
(
d
)
;
DartMarkerStore
<
EmbeddedMap3
>
mark
(
*
this
);
// Lock a marker
...
...
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