Skip to content
Snippets Groups Projects
Commit 3cda1784 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[grid.intersection] add operator<< for intersections

parent 0f87f149
No related branches found
No related tags found
2 merge requests!20Update bindings,!11WIP: Update bindings
......@@ -169,6 +169,21 @@ contains(const Dune::Intersection<G, I>& intersection,
} // namespace Grid
} // namespace XT
template <class G, class I>
std::ostream& operator<<(std::ostream& out, const Dune::Intersection<G, I>& intersection)
{
const auto& geometry = intersection.geometry();
const auto num_corners = geometry.corners();
out << G::dimension - 1 << "d-intersection{[" << geometry.corner(0) << "]";
for (int ii = 1; ii < num_corners; ++ii)
out << ", [" << geometry.corner(ii) << "]";
out << "}";
return out;
}
} // namespace Dune
#endif // DUNE_XT_GRID_INTERSECTION_HH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment