Lines Matching refs:mpPolyPolygon
211 mpPolyPolygon(DefaultPolyPolygon::get()) in B3DPolyPolygon()
216 mpPolyPolygon(rPolyPolygon.mpPolyPolygon) in B3DPolyPolygon()
221 mpPolyPolygon( ImplB3DPolyPolygon(rPolygon) ) in B3DPolyPolygon()
231 mpPolyPolygon = rPolyPolygon.mpPolyPolygon; in operator =()
237 mpPolyPolygon.make_unique(); in makeUnique()
238 mpPolyPolygon->makeUnique(); in makeUnique()
243 if(mpPolyPolygon.same_object(rPolyPolygon.mpPolyPolygon)) in operator ==()
246 return ((*mpPolyPolygon) == (*rPolyPolygon.mpPolyPolygon)); in operator ==()
256 return mpPolyPolygon->count(); in count()
261 OSL_ENSURE(nIndex < mpPolyPolygon->count(), "B3DPolyPolygon access outside range (!)"); in getB3DPolygon()
263 return mpPolyPolygon->getB3DPolygon(nIndex); in getB3DPolygon()
268 OSL_ENSURE(nIndex < mpPolyPolygon->count(), "B3DPolyPolygon access outside range (!)"); in setB3DPolygon()
271 mpPolyPolygon->setB3DPolygon(nIndex, rPolygon); in setB3DPolygon()
276 for(sal_uInt32 a(0L); a < mpPolyPolygon->count(); a++) in areBColorsUsed()
278 if((mpPolyPolygon->getB3DPolygon(a)).areBColorsUsed()) in areBColorsUsed()
290 mpPolyPolygon->clearBColors(); in clearBColors()
296 mpPolyPolygon->transformNormals(rMatrix); in transformNormals()
301 for(sal_uInt32 a(0L); a < mpPolyPolygon->count(); a++) in areNormalsUsed()
303 if((mpPolyPolygon->getB3DPolygon(a)).areNormalsUsed()) in areNormalsUsed()
315 mpPolyPolygon->clearNormals(); in clearNormals()
321 mpPolyPolygon->transformTextureCoordiantes(rMatrix); in transformTextureCoordiantes()
326 for(sal_uInt32 a(0L); a < mpPolyPolygon->count(); a++) in areTextureCoordinatesUsed()
328 if((mpPolyPolygon->getB3DPolygon(a)).areTextureCoordinatesUsed()) in areTextureCoordinatesUsed()
340 mpPolyPolygon->clearTextureCoordinates(); in clearTextureCoordinates()
345 OSL_ENSURE(nIndex <= mpPolyPolygon->count(), "B3DPolyPolygon Insert outside range (!)"); in insert()
348 mpPolyPolygon->insert(nIndex, rPolygon, nCount); in insert()
354 mpPolyPolygon->insert(mpPolyPolygon->count(), rPolygon, nCount); in append()
359 OSL_ENSURE(nIndex <= mpPolyPolygon->count(), "B3DPolyPolygon Insert outside range (!)"); in insert()
362 mpPolyPolygon->insert(nIndex, rPolyPolygon); in insert()
368 mpPolyPolygon->insert(mpPolyPolygon->count(), rPolyPolygon); in append()
373 OSL_ENSURE(nIndex + nCount <= mpPolyPolygon->count(), "B3DPolyPolygon Remove outside range (!)"); in remove()
376 mpPolyPolygon->remove(nIndex, nCount); in remove()
381 mpPolyPolygon = DefaultPolyPolygon::get(); in clear()
390 for(sal_uInt32 a(0L); bRetval && a < mpPolyPolygon->count(); a++) in isClosed()
392 if(!(mpPolyPolygon->getB3DPolygon(a)).isClosed()) in isClosed()
404 mpPolyPolygon->setClosed(bNew); in setClosed()
409 mpPolyPolygon->flip(); in flip()
416 for(sal_uInt32 a(0L); !bRetval && a < mpPolyPolygon->count(); a++) in hasDoublePoints()
418 if((mpPolyPolygon->getB3DPolygon(a)).hasDoublePoints()) in hasDoublePoints()
430 mpPolyPolygon->removeDoublePoints(); in removeDoublePoints()
435 if(mpPolyPolygon->count() && !rMatrix.isIdentity()) in transform()
437 mpPolyPolygon->transform(rMatrix); in transform()