Merge remote-tracking branch 'cgal/6.0.x-branch' into 'cgal/master'

This commit is contained in:
Sébastien Loriot 2025-05-16 13:25:40 +02:00
commit b1c8200387
2 changed files with 2 additions and 2 deletions

View File

@ -812,7 +812,7 @@ public:
CGAL_SS_i::vertices_begin(hole), CGAL_SS_i::vertices_begin(hole),
CGAL_SS_i::vertices_end(hole), CGAL_SS_i::vertices_end(hole),
std::begin(no_holes), std::end(no_holes), std::begin(no_holes), std::end(no_holes),
std::begin(speeds[hole_id]), std::end(speeds[hole_id]), std::begin(speeds[1 + hole_id]), std::end(speeds[1 + hole_id]),
std::begin(no_speeds), std::end(no_speeds), std::begin(no_speeds), std::end(no_speeds),
m_gt); m_gt);

View File

@ -257,7 +257,7 @@ struct Dihedral_angle_cosine
CGAL_assertion(l.m_sgn != CGAL::POSITIVE); CGAL_assertion(l.m_sgn != CGAL::POSITIVE);
CGAL_assertion(r.m_sgn != CGAL::POSITIVE); CGAL_assertion(r.m_sgn != CGAL::POSITIVE);
return (l.m_sq_num * r.m_sq_den >= r.m_sq_num* l.m_sq_den); return (l.m_sq_num * r.m_sq_den > r.m_sq_num* l.m_sq_den);
} }
} }