SWORD25: Fix typo

This commit is contained in:
Jakub Wilk 2015-12-09 23:02:01 +01:00
parent 33be7ef5dd
commit 407a5a1f55

View File

@ -110,7 +110,7 @@ bool Polygon::computeIsCW() const {
// Cross product form
// If the cross product of the vertex lying fartherest bottom left is positive,
// the vertecies arrranged in a clockwise order. Otherwise counter-clockwise
// the vertecies arranged in a clockwise order. Otherwise counter-clockwise
if (crossProduct(vertices[v1Index], vertices[v2Index], vertices[v3Index]) >= 0)
return true;
}