be consistant with Triangle_from_face_C3t3

This commit is contained in:
Sébastien Loriot 2016-07-20 11:33:51 +02:00
parent aecf0fe586
commit c6f36a53a4
1 changed files with 4 additions and 4 deletions

View File

@ -393,10 +393,10 @@ public:
{}
Tetrahedron operator()(Cell cell)const
{
Point p0 = cell->vertex(0)->point();
Point p1 = cell->vertex(1)->point();
Point p2 = cell->vertex(2)->point();
Point p3 = cell->vertex(3)->point();
const Point& p0 = cell->vertex(0)->point();
const Point& p1 = cell->vertex(1)->point();
const Point& p2 = cell->vertex(2)->point();
const Point& p3 = cell->vertex(3)->point();
return Tetrahedron(p0,p1,p2,p3);
}
};