diff options
-rw-r--r-- | basegfx/source/polygon/b2dpolygon.cxx | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/basegfx/source/polygon/b2dpolygon.cxx b/basegfx/source/polygon/b2dpolygon.cxx index 4aa2ad492857..34eddd72bf2a 100644 --- a/basegfx/source/polygon/b2dpolygon.cxx +++ b/basegfx/source/polygon/b2dpolygon.cxx @@ -318,11 +318,6 @@ public: } } - sal_uInt32 count() const - { - return maVector.size(); - } - bool operator==(const ControlVectorArray2D& rCandidate) const { return (maVector == rCandidate.maVector); @@ -874,12 +869,6 @@ public: return (mpControlVector && mpControlVector->isUsed()); } - void resetControlVectors(sal_uInt32 nIndex) - { - setPrevControlVector(nIndex, basegfx::B2DVector::getEmptyVector()); - setNextControlVector(nIndex, basegfx::B2DVector::getEmptyVector()); - } - void resetControlVectors() { mpBufferedData.reset(); @@ -1159,28 +1148,6 @@ public: maPoints.transform(rMatrix); } } - - const basegfx::B2DPoint* begin() const - { - return maPoints.begin(); - } - - const basegfx::B2DPoint* end() const - { - return maPoints.end(); - } - - basegfx::B2DPoint* begin() - { - mpBufferedData.reset(); - return maPoints.begin(); - } - - basegfx::B2DPoint* end() - { - mpBufferedData.reset(); - return maPoints.end(); - } }; |