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
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
Show 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:
...
@@ -312,7 +312,7 @@ public:
*/
*/
bool
isBoundaryEdge
(
Dart
d
)
;
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 d a dart
* @param e a dart
* @param e a dart
*/
*/
...
...
include/Topology/map/map3.h
View file @
3e3ee648
...
@@ -217,6 +217,11 @@ public:
...
@@ -217,6 +217,11 @@ public:
*/
*/
unsigned
int
edgeDegree
(
Dart
d
);
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
//! Test if dart d and e belong to the same oriented face
/*! @param d a dart
/*! @param d a dart
* @param e a dart
* @param e a dart
...
@@ -246,34 +251,34 @@ public:
...
@@ -246,34 +251,34 @@ public:
/*! @param d a dart of the vertex
/*! @param d a dart of the vertex
* @param fonct the functor
* @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
//! Apply a functor on each dart of a vertex
/*! @param d a dart of the vertex
/*! @param d a dart of the vertex
* @param fonct the functor
* @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
//! Apply a functor on each dart of an edge
/*! @param d a dart of the oriented edge
/*! @param d a dart of the oriented edge
* @param fonct the functor
* @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
//! Apply a functor on each dart of an oriented face
/*! @param d a dart of the oriented face
/*! @param d a dart of the oriented face
* @param fonct the functor
* @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 ?
// TODO change to oriented volume to handle higher dimension ?
//! Apply a functor on each dart of an volume
//! Apply a functor on each dart of an volume
/*! @param d a dart of the volume
/*! @param d a dart of the volume
* @param fonct the functor
* @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
);
return
foreach_dart_of_oriented_volume
(
d
,
f
);
}
}
...
@@ -282,7 +287,7 @@ public:
...
@@ -282,7 +287,7 @@ public:
/*! @param d a dart of the cc
/*! @param d a dart of the cc
* @param fonct the functor
* @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