Skip to content
Snippets Groups Projects
Commit e8dc539d authored by Christian Engwer's avatar Christian Engwer
Browse files

disabled inside/outside in IntersectionIteratorInterface to avoid bug #24

[[Imported from SVN: r2364]]
parent 41bcf00f
No related branches found
No related tags found
No related merge requests found
......@@ -236,17 +236,17 @@ namespace Dune
//! return EntityPointer to the Entity on the inside of this intersection
//! (that is the Entity where we started this Iterator)
EntityPointer inside() const
{
return asImp().inside();
}
// EntityPointer inside() const
// {
// return asImp().inside();
// }
//! return EntityPointer to the Entity on the outside of this intersection
//! (that is the neighboring Entity)
EntityPointer outside() const
{
return asImp().outside();
}
// EntityPointer outside() const
// {
// return asImp().outside();
// }
/*! return an outer normal (length not necessarily 1)
......
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