Lines Matching refs:rPolyPolygon
88 void insert(sal_uInt32 nIndex, const ::basegfx::B3DPolyPolygon& rPolyPolygon) in insert() argument
90 const sal_uInt32 nCount = rPolyPolygon.count(); in insert()
101 maPolygons.insert(aIndex, rPolyPolygon.getB3DPolygon(a)); in insert()
215 B3DPolyPolygon::B3DPolyPolygon(const B3DPolyPolygon& rPolyPolygon) : in B3DPolyPolygon() argument
216 mpPolyPolygon(rPolyPolygon.mpPolyPolygon) in B3DPolyPolygon()
229 B3DPolyPolygon& B3DPolyPolygon::operator=(const B3DPolyPolygon& rPolyPolygon) in operator =() argument
231 mpPolyPolygon = rPolyPolygon.mpPolyPolygon; in operator =()
241 bool B3DPolyPolygon::operator==(const B3DPolyPolygon& rPolyPolygon) const in operator ==()
243 if(mpPolyPolygon.same_object(rPolyPolygon.mpPolyPolygon)) in operator ==()
246 return ((*mpPolyPolygon) == (*rPolyPolygon.mpPolyPolygon)); in operator ==()
249 bool B3DPolyPolygon::operator!=(const B3DPolyPolygon& rPolyPolygon) const in operator !=()
251 return !(*this == rPolyPolygon); in operator !=()
357 void B3DPolyPolygon::insert(sal_uInt32 nIndex, const B3DPolyPolygon& rPolyPolygon) in insert() argument
361 if(rPolyPolygon.count()) in insert()
362 mpPolyPolygon->insert(nIndex, rPolyPolygon); in insert()
365 void B3DPolyPolygon::append(const B3DPolyPolygon& rPolyPolygon) in append() argument
367 if(rPolyPolygon.count()) in append()
368 mpPolyPolygon->insert(mpPolyPolygon->count(), rPolyPolygon); in append()