trivial bug-fix for master: fix namespace

This commit is contained in:
Sébastien Loriot 2014-04-22 16:35:18 +02:00
parent c062a7ac93
commit 4a115d7655
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ private:
// As far as I check: if, say, dihedral angle is 5, this returns 175,
// if dihedral angle is -5, this returns -175.
// Another words this function returns angle between planes.
double n_angle = to_double( Mesh_3::dihedral_angle(a, b, c, d) );
double n_angle = to_double( ::CGAL::Mesh_3::dihedral_angle(a, b, c, d) );
n_angle /= 180.0;
bool concave = n_angle > 0;
double angle = 1 + ((concave ? -1 : +1) * n_angle);