mirror of https://github.com/CGAL/cgal
add missing constructor
This commit is contained in:
parent
6f455c6fd8
commit
c457b0dff3
|
|
@ -294,6 +294,10 @@ struct Output_rep<Triangulation_simplex_3<TriangulationDataStructure_3>, Tag >
|
||||||
Simplex simplex;
|
Simplex simplex;
|
||||||
Tag tag;
|
Tag tag;
|
||||||
|
|
||||||
|
Output_rep(Simplex s)
|
||||||
|
: simplex(s)
|
||||||
|
{}
|
||||||
|
|
||||||
std::ostream& operator()(std::ostream& os) const {
|
std::ostream& operator()(std::ostream& os) const {
|
||||||
auto display_vert = [&](auto v) {
|
auto display_vert = [&](auto v) {
|
||||||
return CGAL::IO::oformat(v, tag);
|
return CGAL::IO::oformat(v, tag);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue