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
OpenVolumeMesh
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
7
Issues
7
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenVolumeMesh
OpenVolumeMesh
Commits
3dbb624e
Commit
3dbb624e
authored
Oct 25, 2016
by
Max Lyon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mark vertex_cells and halfedge_cells as const
parent
75322fef
Pipeline
#3351
passed with stage
in 3 minutes and 37 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/OpenVolumeMesh/Core/TopologyKernel.hh
src/OpenVolumeMesh/Core/TopologyKernel.hh
+2
-2
No files found.
src/OpenVolumeMesh/Core/TopologyKernel.hh
View file @
3dbb624e
...
...
@@ -140,7 +140,7 @@ public:
return
VertexCellIter
(
_h
,
this
,
_max_laps
);
}
std
::
pair
<
VertexCellIter
,
VertexCellIter
>
vertex_cells
(
const
VertexHandle
&
_h
,
int
_max_laps
=
1
){
std
::
pair
<
VertexCellIter
,
VertexCellIter
>
vertex_cells
(
const
VertexHandle
&
_h
,
int
_max_laps
=
1
)
const
{
VertexCellIter
begin
=
vc_iter
(
_h
,
_max_laps
);
return
std
::
make_pair
(
begin
,
make_end_circulator
(
begin
));
}
...
...
@@ -149,7 +149,7 @@ public:
return
HalfEdgeCellIter
(
_h
,
this
,
_max_laps
);
}
std
::
pair
<
HalfEdgeCellIter
,
HalfEdgeCellIter
>
halfedge_cells
(
const
HalfEdgeHandle
&
_h
,
int
_max_laps
=
1
){
std
::
pair
<
HalfEdgeCellIter
,
HalfEdgeCellIter
>
halfedge_cells
(
const
HalfEdgeHandle
&
_h
,
int
_max_laps
=
1
)
const
{
HalfEdgeCellIter
begin
=
hec_iter
(
_h
,
_max_laps
);
return
std
::
make_pair
(
begin
,
make_end_circulator
(
begin
));
}
...
...
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