OpenMesh
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Functions
_
a
b
c
d
g
i
k
m
o
r
s
v
w
Variables
Typedefs
f
g
i
r
s
u
v
Enumerations
Enumerator
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
Typedefs
c
e
f
h
i
k
n
p
r
s
t
v
Enumerations
Enumerator
Related Functions
Files
File List
File Members
All
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
stats.hh
1
#ifndef STATS_HH
2
#define STATS_HH
3
4
template
<
typename
Mesh>
5
void
mesh_stats( Mesh& _m,
const
std::string& prefix =
""
)
6
{
7
std::cout << prefix
8
<< _m.n_vertices() <<
" vertices, "
9
<< _m.n_edges() <<
" edges, "
10
<< _m.n_faces() <<
" faces\n"
;
11
}
12
13
template
<
typename
Mesh>
14
void
mesh_property_stats(Mesh& _m)
15
{
16
std::cout <<
"Current set of properties:\n"
;
17
_m.property_stats(std::cout);
18
}
19
20
#endif
Project
OpenMesh
, © Visual Computing Institute, RWTH Aachen. Documentation generated using
doxygen
.