mirror of https://github.com/CGAL/cgal
trivial bug-fix for master: fix namespace
This commit is contained in:
parent
c062a7ac93
commit
4a115d7655
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue