Fixed enum

This commit is contained in:
Efi Fogel 2017-08-18 11:01:55 +03:00
parent 072b00c3cd
commit cc234476b0
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ get_segment_outer_circle(const typename Kernel::Segment_2 seg,
{
typename Kernel::Direction_2 forward( seg);
typename Kernel::Direction_2 backward(-forward);
return (orientation == CGAL::Orientation::CLOCKWISE) ?
return (orientation == CGAL::CLOCKWISE) ?
std::make_pair(backward, forward) : std::make_pair(forward, backward);
}