cganged RIGHTTURN to RIGHT_TURN, etc

This commit is contained in:
Efi Fogel 2003-11-30 16:58:54 +00:00
parent 0da84084aa
commit 4611cf4d03
1 changed files with 2 additions and 2 deletions

View File

@ -1866,9 +1866,9 @@ public:
typename Kernel::Orientation_2 orient_f = ker.orientation_2_object();
if (_conic.orientation() == 1)
return (orient_f(_source, p, _target) == LEFTTURN);
return (orient_f(_source, p, _target) == LEFT_TURN);
else
return (orient_f(_source, p, _target) == RIGHTTURN);
return (orient_f(_source, p, _target) == RIGHT_TURN);
}
}