summaryrefslogtreecommitdiff
path: root/basegfx/inc
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/inc')
-rw-r--r--basegfx/inc/basegfx/color/bcolor.hxx7
-rw-r--r--basegfx/inc/basegfx/tools/rectcliptools.hxx2
2 files changed, 8 insertions, 1 deletions
diff --git a/basegfx/inc/basegfx/color/bcolor.hxx b/basegfx/inc/basegfx/color/bcolor.hxx
index 0ce3321c798e..f19f7e74080f 100644
--- a/basegfx/inc/basegfx/color/bcolor.hxx
+++ b/basegfx/inc/basegfx/color/bcolor.hxx
@@ -208,6 +208,13 @@ namespace basegfx
mfZ = basegfx::clamp(mfZ, 0.0, 1.0);
}
+ void invert()
+ {
+ mfX = 1.0 - mfX;
+ mfY = 1.0 - mfY;
+ mfZ = 1.0 - mfZ;
+ }
+
static const BColor& getEmptyBColor()
{
return (const BColor&) ::basegfx::B3DTuple::getEmptyTuple();
diff --git a/basegfx/inc/basegfx/tools/rectcliptools.hxx b/basegfx/inc/basegfx/tools/rectcliptools.hxx
index b4c5049b1da8..bfcd808ed19c 100644
--- a/basegfx/inc/basegfx/tools/rectcliptools.hxx
+++ b/basegfx/inc/basegfx/tools/rectcliptools.hxx
@@ -74,7 +74,7 @@ namespace basegfx
the number of clip planes hit within the
getCohenSutherlandClipFlags() method.
*/
- sal_uInt32 getNumberOfClipPlanes( sal_uInt32 nFlags )
+ inline sal_uInt32 getNumberOfClipPlanes( sal_uInt32 nFlags )
{
// classic bit count algo, see e.g. Reingold, Nievergelt,
// Deo: Combinatorial Algorithms, Theory and Practice,