Fix mistake while switching to new PI constants

From previous pullrequest (https://github.com/assimp/assimp/pull/859),
commit 7c0e40a3f4 introduced the error.

Thanks @mosra for catching it!

Signed-off-by: Squareys <Squareys@googlemail.com>
pull/860/head
Squareys 2016-04-21 15:22:33 +02:00
parent 6107ead295
commit 6bc36eb2b6
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ void Sweep::FillAdvancingFront(SweepContext& tcx, Node& n)
while (node->next) { while (node->next) {
double angle = HoleAngle(*node); double angle = HoleAngle(*node);
if (angle > PI || angle < -PI_2) break; if (angle > PI_2 || angle < -PI_2) break;
Fill(tcx, *node); Fill(tcx, *node);
node = node->next; node = node->next;
} }