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
OpenMesh
OpenMesh
Commits
acda26a0
Commit
acda26a0
authored
May 09, 2016
by
Jan Möbius
Browse files
Fixed Documentation stating unsined int instead of size_t for n_entity() functions
parent
0d3cce6d
Pipeline
#1641
passed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Doc/Concepts/MeshKernel.hh
View file @
acda26a0
...
...
@@ -141,9 +141,9 @@ public:
* exhausted. This might lead to an memory allocation exception,
* though an smaller increment would be enough.
*/
void
reserve
(
unsigned
in
t
_n_vertices
,
unsigned
in
t
_n_edges
,
unsigned
in
t
_n_faces
);
void
reserve
(
size_
t
_n_vertices
,
size_
t
_n_edges
,
size_
t
_n_faces
);
/// \name Handle -> Item.
...
...
@@ -224,13 +224,13 @@ public:
/// \name Number of elements
//@{
/// Returns number of vertices
unsigned
in
t
n_vertices
()
const
;
size_
t
n_vertices
()
const
;
/// Returns number of halfedges (should be 2*n_edges())
unsigned
in
t
n_halfedges
()
const
;
size_
t
n_halfedges
()
const
;
/// Returns number of edges
unsigned
in
t
n_edges
()
const
;
size_
t
n_edges
()
const
;
/// Returns number of faces
unsigned
in
t
n_faces
()
const
;
size_
t
n_faces
()
const
;
/// Is the vertex container empty?
bool
vertices_empty
()
const
;
/// Is the halfedge container empty (should be the same as edges_empty()).
...
...
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