Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CGoGN
CGoGN
Commits
3e3ee648
Commit
3e3ee648
authored
Nov 29, 2011
by
untereiner
Browse files
bla
parent
7f2d298b
Changes
2
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment