summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--basegfx/source/polygon/b2dpolypolygoncutter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygoncutter.cxx b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
index d80c670fe04f..1388a10f360e 100644
--- a/basegfx/source/polygon/b2dpolypolygoncutter.cxx
+++ b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
@@ -142,7 +142,7 @@ namespace basegfx
// with border.
if(rVecA.cross(rVecB) > 0.0)
{
- // b is left turn seen from a, test if Test is left of both and so inside (left is seeen as inside)
+ // b is left turn seen from a, test if Test is left of both and so inside (left is seen as inside)
const bool bBoolA(fTools::moreOrEqual(rVecA.cross(rTest), 0.0));
const bool bBoolB(fTools::lessOrEqual(rVecB.cross(rTest), 0.0));
@@ -150,7 +150,7 @@ namespace basegfx
}
else
{
- // b is right turn seen from a, test if Test is right of both and so outside (left is seeen as inside)
+ // b is right turn seen from a, test if Test is right of both and so outside (left is seen as inside)
const bool bBoolA(fTools::lessOrEqual(rVecA.cross(rTest), 0.0));
const bool bBoolB(fTools::moreOrEqual(rVecB.cross(rTest), 0.0));