Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Philip Trettner
polymesh
Commits
83c28449
Commit
83c28449
authored
Sep 23, 2020
by
Julius Nehring-Wirxel
Browse files
The out-stream is now a template argument
parent
f56312d6
Changes
1
Show whitespace changes
Inline
Side-by-side
src/polymesh/algorithms/stats.hh
View file @
83c28449
#pragma once
#include <iostream>
#include <sstream>
#include <polymesh/Mesh.hh>
...
...
@@ -15,12 +14,12 @@ namespace polymesh
/// - number of primitives
/// - components
/// - aabb
template
<
class
Vec3
=
void
>
void
print_stats
(
std
::
os
tream
&
out
,
Mesh
const
&
m
,
vertex_attribute
<
Vec3
>
const
*
position
=
nullptr
);
template
<
class
Vec3
=
void
,
class
OutStream
>
void
print_stats
(
OutS
tream
&
out
,
Mesh
const
&
m
,
vertex_attribute
<
Vec3
>
const
*
position
=
nullptr
);
// ======== IMPLEMENTATION ========
template
<
class
Vec3
>
void
print_stats
(
std
::
os
tream
&
out
,
Mesh
const
&
m
,
vertex_attribute
<
Vec3
>
const
*
position
)
template
<
class
Vec3
,
class
OutStream
>
void
print_stats
(
OutS
tream
&
out
,
Mesh
const
&
m
,
vertex_attribute
<
Vec3
>
const
*
position
)
{
auto
ln
=
"
\n
"
;
...
...
Write
Preview
Supports
Markdown
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