Fixed unnecessary construct_point_3_object call

This commit is contained in:
Mael Rouxel-Labbé 2017-06-02 16:08:42 +02:00
parent 05debcfeac
commit 2ecd819e5b
1 changed files with 1 additions and 3 deletions

View File

@ -1053,9 +1053,7 @@ private:
const Bare_point& p3 = wp2p(ch->vertex(k3)->point());
// compute normal and return it
// <PERIODIC> (also all the passing of c3t3 by const ref& in the functions)
Construct_point_3 cp = c3t3.triangulation().geom_traits().construct_point_3_object();
return normal(cp(p1),cp(p2),cp(p3));
return normal(p1, p2, p3);
}
};