Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
KennethVanhoey
CGoGN
Commits
3e3ee648
Commit
3e3ee648
authored
Nov 29, 2011
by
untereiner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bla
parent
7f2d298b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
8 deletions
+13
-8
include/Topology/map/map2.h
include/Topology/map/map2.h
+1
-1
include/Topology/map/map3.h
include/Topology/map/map3.h
+12
-7
No files found.
include/Topology/map/map2.h
View file @
3e3ee648
...
...
@@ -312,7 +312,7 @@ public:
*/
bool
isBoundaryEdge
(
Dart
d
)
;
//!Test if dart d and e belong to the same oriented face
//!
Test if dart d and e belong to the same oriented face
/*! @param d a dart
* @param e a dart
*/
...
...
include/Topology/map/map3.h
View file @
3e3ee648
...
...
@@ -217,6 +217,11 @@ public:
*/
unsigned
int
edgeDegree
(
Dart
d
);
/**
* tell if the edge of d is on the boundary of the map
*/
bool
isBoundaryEdge
(
Dart
d
)
;
//! Test if dart d and e belong to the same oriented face
/*! @param d a dart
* @param e a dart
...
...
@@ -246,34 +251,34 @@ public:
/*! @param d a dart of the vertex
* @param fonct the functor
*/
bool
foreach_dart_of_oriented_vertex
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
bool
foreach_dart_of_oriented_vertex
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
//! Apply a functor on each dart of a vertex
/*! @param d a dart of the vertex
* @param fonct the functor
*/
bool
foreach_dart_of_vertex
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
bool
foreach_dart_of_vertex
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
//! Apply a functor on each dart of an edge
/*! @param d a dart of the oriented edge
* @param fonct the functor
*/
bool
foreach_dart_of_edge
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
bool
foreach_dart_of_edge
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
bool
foreach_dart_of_open_edge
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
bool
foreach_dart_of_open_edge
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
//! Apply a functor on each dart of an oriented face
/*! @param d a dart of the oriented face
* @param fonct the functor
*/
bool
foreach_dart_of_face
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
bool
foreach_dart_of_face
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
// TODO change to oriented volume to handle higher dimension ?
//! Apply a functor on each dart of an volume
/*! @param d a dart of the volume
* @param fonct the functor
*/
bool
foreach_dart_of_volume
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
)
bool
foreach_dart_of_volume
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
)
{
return
foreach_dart_of_oriented_volume
(
d
,
f
);
}
...
...
@@ -282,7 +287,7 @@ public:
/*! @param d a dart of the cc
* @param fonct the functor
*/
bool
foreach_dart_of_cc
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
bool
foreach_dart_of_cc
(
Dart
d
,
FunctorType
&
f
,
unsigned
int
thread
=
0
);
//@}
};
...
...
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