| /AOO41X/main/tools/source/generic/ |
| H A D | poly2.cxx | 126 PolyPolygon::PolyPolygon( const PolyPolygon& rPolyPoly ) in PolyPolygon() argument 129 DBG_CHKOBJ( &rPolyPoly, PolyPolygon, NULL ); in PolyPolygon() 130 …DBG_ASSERT( rPolyPoly.mpImplPolyPolygon->mnRefCount < 0xFFFFFFFE, "PolyPolygon: RefCount overflow"… in PolyPolygon() 132 mpImplPolyPolygon = rPolyPoly.mpImplPolyPolygon; in PolyPolygon() 365 void PolyPolygon::GetIntersection( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const in GetIntersection() argument 367 ImplDoOperation( rPolyPoly, rResult, POLY_CLIP_INT ); in GetIntersection() 372 void PolyPolygon::GetUnion( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const in GetUnion() argument 374 ImplDoOperation( rPolyPoly, rResult, POLY_CLIP_UNION ); in GetUnion() 379 void PolyPolygon::GetDifference( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const in GetDifference() argument 381 ImplDoOperation( rPolyPoly, rResult, POLY_CLIP_DIFF ); in GetDifference() [all …]
|
| /AOO41X/main/vcl/source/gdi/ |
| H A D | region.cxx | 51 bool ImplIsPolygonRectilinear (const PolyPolygon& rPolyPoly) in ImplIsPolygonRectilinear() argument 54 const sal_uInt16 nPolyCount = rPolyPoly.Count(); in ImplIsPolygonRectilinear() 57 const Polygon& aPoly = rPolyPoly.GetObject(nPoly); in ImplIsPolygonRectilinear() 96 RegionBand* ImplRectilinearPolygonToBands(const PolyPolygon& rPolyPoly) in ImplRectilinearPolygonToBands() argument 98 OSL_ASSERT(ImplIsPolygonRectilinear (rPolyPoly)); in ImplRectilinearPolygonToBands() 105 const sal_uInt16 nPolyCount = rPolyPoly.Count(); in ImplRectilinearPolygonToBands() 108 const Polygon& aPoly = rPolyPoly.GetObject(nPoly); in ImplRectilinearPolygonToBands() 194 …RegionBand* ImplGeneralPolygonToBands(const PolyPolygon& rPolyPoly, const Rectangle& rPolygonBound… in ImplGeneralPolygonToBands() argument 203 const sal_uInt16 nPolyCount = rPolyPoly.Count(); in ImplGeneralPolygonToBands() 208 const Polygon& aPoly = rPolyPoly.GetObject( nPoly ); in ImplGeneralPolygonToBands() [all …]
|
| H A D | outdev4.cxx | 98 void OutputDevice::ImplDrawPolyPolygon( const PolyPolygon& rPolyPoly, const PolyPolygon* pClipPolyP… in ImplDrawPolyPolygon() argument 105 rPolyPoly.GetIntersection( *pClipPolyPoly, *pPolyPoly ); in ImplDrawPolyPolygon() 108 pPolyPoly = (PolyPolygon*) &rPolyPoly; in ImplDrawPolyPolygon() 779 void OutputDevice::DrawGradient( const PolyPolygon& rPolyPoly, in DrawGradient() argument 796 if( rPolyPoly.Count() && rPolyPoly[ 0 ].GetSize() && !( mnDrawMode & DRAWMODE_NOGRADIENT ) ) in DrawGradient() 819 DrawPolyPolygon( rPolyPoly ); in DrawGradient() 826 const Rectangle aRect( rPolyPoly.GetBoundRect() ); in DrawGradient() 829 mpMetaFile->AddAction( new MetaGradientExAction( rPolyPoly, rGradient ) ); in DrawGradient() 834 IntersectClipRegion( rPolyPoly ); in DrawGradient() 848 DrawPolyPolygon( rPolyPoly ); in DrawGradient() [all …]
|
| H A D | impvect.cxx | 844 PolyPolygon& rPolyPoly, in ImplVectorize() argument 868 rPolyPoly.Clear(); in ImplVectorize() 869 ImplCalculate( pMap, rPolyPoly, 0, nFlags ); in ImplVectorize() 871 ImplLimitPolyPoly( rPolyPoly ); in ImplVectorize() 874 rPolyPoly.Optimize( POLY_OPTIMIZE_EDGES ); in ImplVectorize() 882 sal_uInt16 nCurPoly( 0 ), nCount( rPolyPoly.Count() ); in ImplVectorize() 886 const Polygon& rPoly = rPolyPoly.GetObject( nCurPoly ); in ImplVectorize() 892 if( ( i != nCurPoly ) && rPolyPoly.GetObject( i ).IsInside( rPoly[ 0 ] ) ) in ImplVectorize() 914 rPolyPoly.Replace( aNewPoly, nCurPoly ); in ImplVectorize() 924 const Polygon aFirst( rPolyPoly.GetObject( static_cast< sal_uInt16 >( nFirstPoly ) ) ); in ImplVectorize() [all …]
|
| H A D | pdfwriter.cxx | 182 void PDFWriter::DrawPolyPolygon( const PolyPolygon& rPolyPoly ) in DrawPolyPolygon() argument 184 ((PDFWriterImpl*)pImplementation)->drawPolyPolygon( rPolyPoly ); in DrawPolyPolygon() 265 void PDFWriter::DrawGradient( const PolyPolygon& rPolyPoly, const Gradient& rGradient ) in DrawGradient() argument 267 ((PDFWriterImpl*)pImplementation)->drawGradient( rPolyPoly, rGradient ); in DrawGradient() 270 void PDFWriter::DrawHatch( const PolyPolygon& rPolyPoly, const Hatch& rHatch ) in DrawHatch() argument 272 ((PDFWriterImpl*)pImplementation)->drawHatch( rPolyPoly, rHatch ); in DrawHatch() 280 void PDFWriter::DrawTransparent( const PolyPolygon& rPolyPoly, sal_uInt16 nTransparencePercent ) in DrawTransparent() argument 282 ((PDFWriterImpl*)pImplementation)->drawTransparent( rPolyPoly, nTransparencePercent ); in DrawTransparent() 553 void PDFWriter::DrawPolyPolygon( const PolyPolygon& rPolyPoly, sal_Int32 nPattern, bool bEOFill ) in DrawPolyPolygon() argument 555 ((PDFWriterImpl*)pImplementation)->drawPolyPolygon( rPolyPoly, nPattern, bEOFill ); in DrawPolyPolygon()
|
| H A D | bmpacc3.cxx | 373 void BitmapWriteAccess::FillPolyPolygon( const PolyPolygon& rPolyPoly ) in FillPolyPolygon() argument 375 const sal_uInt16 nCount = rPolyPoly.Count(); in FillPolyPolygon() 380 Region aRegion( rPolyPoly ); in FillPolyPolygon() 415 void BitmapWriteAccess::DrawPolyPolygon( const PolyPolygon& rPolyPoly ) in DrawPolyPolygon() argument 418 FillPolyPolygon( rPolyPoly ); in DrawPolyPolygon() 422 for( sal_uInt16 n = 0, nCount = rPolyPoly.Count(); n < nCount; ) in DrawPolyPolygon() 424 const Polygon& rPoly = rPolyPoly[ n++ ]; in DrawPolyPolygon()
|
| H A D | outdev6.cxx | 231 void OutputDevice::DrawTransparent( const PolyPolygon& rPolyPoly, in DrawTransparent() argument 240 DrawPolyPolygon( rPolyPoly ); in DrawTransparent() 254 DrawPolyPolygon( rPolyPoly ); in DrawTransparent() 261 mpMetaFile->AddAction( new MetaTransparentAction( rPolyPoly, nTransparencePercent ) ); in DrawTransparent() 283 && !rPolyPoly.IsRect() in DrawTransparent() 298 basegfx::B2DPolyPolygon aB2DPolyPolygon( rPolyPoly.getB2DPolyPolygon() ); in DrawTransparent() 356 Rectangle aPolyRect( LogicToPixel( rPolyPoly ).GetBoundRect() ); in DrawTransparent() 379 IntersectClipRegion( rPolyPoly ); in DrawTransparent() 411 PolyPolygon aPolyPoly( LogicToPixel( rPolyPoly ) ); in DrawTransparent() 445 Rectangle aLogicPolyRect( rPolyPoly.GetBoundRect() ); in DrawTransparent() [all …]
|
| H A D | cvtsvm.cxx | 85 void ImplReadPolyPoly( SvStream& rIStm, PolyPolygon& rPolyPoly ) in ImplReadPolyPoly() argument 95 rPolyPoly.Insert( aPoly ); in ImplReadPolyPoly() 101 void ImplWritePolyPolyAction( SvStream& rOStm, const PolyPolygon& rPolyPoly ) in ImplWritePolyPolyAction() argument 103 const sal_uInt16 nPoly = rPolyPoly.Count(); in ImplWritePolyPolyAction() 108 nPoints = sal::static_int_cast<sal_uInt16>(nPoints + rPolyPoly[ n ].GetSize()); in ImplWritePolyPolyAction() 120 rPolyPoly[n].AdaptiveSubdivide(aSimplePoly); in ImplWritePolyPolyAction() 451 void ImplReadExtendedPolyPolygonAction(SvStream& rIStm, PolyPolygon& rPolyPoly) in ImplReadExtendedPolyPolygonAction() argument 453 rPolyPoly.Clear(); in ImplReadExtendedPolyPolygonAction() 485 rPolyPoly.Insert(aCandidate); in ImplReadExtendedPolyPolygonAction() 2179 … const PolyPolygon& rPolyPoly = ( (MetaTransparentAction*) pAction )->GetPolyPolygon(); in ImplWriteActions() local [all …]
|
| H A D | outdev.cxx | 228 PolyPolygon ImplSubdivideBezier( const PolyPolygon& rPolyPoly ) in ImplSubdivideBezier() argument 230 sal_uInt16 i, nPolys = rPolyPoly.Count(); in ImplSubdivideBezier() 233 aPolyPoly.Insert( ImplSubdivideBezier( rPolyPoly.GetObject(i) ) ); in ImplSubdivideBezier() 241 void OutputDevice::ImplDrawPolyPolygon( sal_uInt16 nPoly, const PolyPolygon& rPolyPoly ) in ImplDrawPolyPolygon() argument 269 const Polygon& rPoly = rPolyPoly.GetObject( i ); in ImplDrawPolyPolygon() 295 Polygon aPoly = ImplSubdivideBezier( rPolyPoly.GetObject( last ) ); in ImplDrawPolyPolygon() 311 PolyPolygon aPolyPoly = ImplSubdivideBezier( rPolyPoly ); in ImplDrawPolyPolygon() 2048 void OutputDevice::DrawPolyPolygon( const PolyPolygon& rPolyPoly ) in DrawPolyPolygon() argument 2052 DBG_CHKOBJ( &rPolyPoly, PolyPolygon, NULL ); in DrawPolyPolygon() 2055 mpMetaFile->AddAction( new MetaPolyPolygonAction( rPolyPoly ) ); in DrawPolyPolygon() [all …]
|
| /AOO41X/main/tools/inc/tools/ |
| H A D | poly.hxx | 198 void GetIntersection( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const; 199 void GetUnion( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const; 200 void GetDifference( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const; 201 void GetXOR( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const; 255 …TOOLS_DLLPRIVATE void ImplDoOperation( const PolyPolygon& rPolyPoly, PolyPolygon& rResult, sal_uI… 264 PolyPolygon( const PolyPolygon& rPolyPoly ); 301 void GetIntersection( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const; 302 void GetUnion( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const; 303 void GetDifference( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const; 304 void GetXOR( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const; [all …]
|
| /AOO41X/main/basegfx/source/tools/ |
| H A D | b2dclipstate.cxx | 191 void unionPolyPolygon(const B2DPolyPolygon& rPolyPoly) in unionPolyPolygon() 196 addPolyPolygon(rPolyPoly,UNION); in unionPolyPolygon() 223 void intersectPolyPolygon(const B2DPolyPolygon& rPolyPoly) in intersectPolyPolygon() 228 addPolyPolygon(rPolyPoly,INTERSECT); in intersectPolyPolygon() 255 void subtractPolyPolygon(const B2DPolyPolygon& rPolyPoly) in subtractPolyPolygon() 260 addPolyPolygon(rPolyPoly,SUBTRACT); in subtractPolyPolygon() 281 void xorPolyPolygon(const B2DPolyPolygon& rPolyPoly) in xorPolyPolygon() 283 addPolyPolygon(rPolyPoly,XOR); in xorPolyPolygon() 519 B2DClipState::B2DClipState( const B2DPolyPolygon& rPolyPoly ) : in B2DClipState() argument 520 mpImpl( ImplB2DClipState(rPolyPoly) ) in B2DClipState() [all …]
|
| H A D | canvastools.cxx | 112 …egment2D > > bezierSequenceSequenceFromB2DPolyPolygon( const ::basegfx::B2DPolyPolygon& rPolyPoly ) in bezierSequenceSequenceFromB2DPolyPolygon() argument 114 const sal_uInt32 nNumPolies( rPolyPoly.count() ); in bezierSequenceSequenceFromB2DPolyPolygon() 122 pOutput[i] = bezierSequenceFromB2DPolygon( rPolyPoly.getB2DPolygon(i) ); in bezierSequenceSequenceFromB2DPolyPolygon() 130 …lPoint2D > > pointSequenceSequenceFromB2DPolyPolygon( const ::basegfx::B2DPolyPolygon& rPolyPoly ) in pointSequenceSequenceFromB2DPolyPolygon() argument 132 const sal_uInt32 nNumPolies( rPolyPoly.count() ); in pointSequenceSequenceFromB2DPolyPolygon() 140 pOutput[i] = pointSequenceFromB2DPolygon( rPolyPoly.getB2DPolygon(i) ); in pointSequenceSequenceFromB2DPolyPolygon() 182 … const ::basegfx::B2DPolyPolygon& rPolyPoly ) in xPolyPolygonFromB2DPolyPolygon() 189 const sal_uInt32 nNumPolies( rPolyPoly.count() ); in xPolyPolygonFromB2DPolyPolygon() 192 if( rPolyPoly.areControlPointsUsed() ) in xPolyPolygonFromB2DPolyPolygon() 195 bezierSequenceSequenceFromB2DPolyPolygon( rPolyPoly ) ), in xPolyPolygonFromB2DPolyPolygon() [all …]
|
| /AOO41X/main/cppcanvas/source/mtfrenderer/ |
| H A D | polypolyaction.cxx | 97 PolyPolyAction::PolyPolyAction( const ::basegfx::B2DPolyPolygon& rPolyPoly, in PolyPolyAction() argument 103 …egfx::unotools::xPolyPolygonFromB2DPolyPolygon( rCanvas->getUNOCanvas()->getDevice(), rPolyPoly) ), in PolyPolyAction() 104 maBounds( ::basegfx::tools::getRange(rPolyPoly) ), in PolyPolyAction() 118 PolyPolyAction::PolyPolyAction( const ::basegfx::B2DPolyPolygon& rPolyPoly, in PolyPolyAction() argument 125 …egfx::unotools::xPolyPolygonFromB2DPolyPolygon( rCanvas->getUNOCanvas()->getDevice(), rPolyPoly) ), in PolyPolyAction() 126 maBounds( ::basegfx::tools::getRange(rPolyPoly) ), in PolyPolyAction() 287 … TexturedPolyPolyAction::TexturedPolyPolyAction( const ::basegfx::B2DPolyPolygon& rPolyPoly, in TexturedPolyPolyAction() argument 292 …egfx::unotools::xPolyPolygonFromB2DPolyPolygon( rCanvas->getUNOCanvas()->getDevice(), rPolyPoly) ), in TexturedPolyPolyAction() 293 maBounds( ::basegfx::tools::getRange(rPolyPoly) ), in TexturedPolyPolyAction() 399 … StrokedPolyPolyAction::StrokedPolyPolyAction( const ::basegfx::B2DPolyPolygon& rPolyPoly, in StrokedPolyPolyAction() argument [all …]
|
| /AOO41X/main/chart2/source/tools/ |
| H A D | BaseGFXHelper.cxx | 39 ::basegfx::B3DRange getBoundVolume( const drawing::PolyPolygonShape3D& rPolyPoly ) in getBoundVolume() argument 44 sal_Int32 nPolyCount = rPolyPoly.SequenceX.getLength(); in getBoundVolume() 47 sal_Int32 nPointCount = rPolyPoly.SequenceX[nPoly].getLength(); in getBoundVolume() 53 rPolyPoly.SequenceX[nPoly][nPoint] in getBoundVolume() 54 , rPolyPoly.SequenceY[nPoly][nPoint] in getBoundVolume() 55 , rPolyPoly.SequenceZ[nPoly][nPoint])); in getBoundVolume() 61 rPolyPoly.SequenceX[nPoly][nPoint] in getBoundVolume() 62 , rPolyPoly.SequenceY[nPoly][nPoint] in getBoundVolume() 63 , rPolyPoly.SequenceZ[nPoly][nPoint])); in getBoundVolume()
|
| /AOO41X/main/filter/source/flash/ |
| H A D | swfwriter.cxx | 389 sal_uInt16 Writer::defineShape( const PolyPolygon& rPolyPoly, const FillStyle& rFillStyle ) in defineShape() argument 397 mpTag->addRect( rPolyPoly.GetBoundRect() ); in defineShape() 414 const sal_uInt16 nCount = rPolyPoly.Count(); in defineShape() 418 const Polygon& rPoly = rPolyPoly[ i ]; in defineShape() 433 sal_uInt16 Writer::defineShape( const PolyPolygon& rPolyPoly, sal_uInt16 nLineWidth, const Color& r… in defineShape() argument 441 mpTag->addRect( rPolyPoly.GetBoundRect() ); in defineShape() 459 const sal_uInt16 nCount = rPolyPoly.Count(); in defineShape() 463 const Polygon& rPoly = rPolyPoly[ i ]; in defineShape()
|
| H A D | swfwriter1.cxx | 295 void Writer::Impl_writePolyPolygon( const PolyPolygon& rPolyPoly, sal_Bool bFilled, sal_uInt8 nTran… in Impl_writePolyPolygon() argument 303 Impl_writePolyPolygon(rPolyPoly, bFilled, aFillColor, aLineColor ); in Impl_writePolyPolygon() 308 void Writer::Impl_writePolyPolygon( const PolyPolygon& rPolyPoly, sal_Bool bFilled, const Color& rF… in Impl_writePolyPolygon() argument 310 PolyPolygon aPolyPoly( rPolyPoly ); in Impl_writePolyPolygon() 317 rPolyPoly.GetIntersection( *mpClipPolyPolygon, aPolyPoly ); in Impl_writePolyPolygon() 344 void Writer::Impl_writeGradientEx( const PolyPolygon& rPolyPoly, const Gradient& rGradient ) in Impl_writeGradientEx() argument 346 if( rPolyPoly.Count() ) in Impl_writeGradientEx() 348 PolyPolygon aPolyPolygon( rPolyPoly ); in Impl_writeGradientEx() 1569 const PolyPolygon& rPolyPoly = pA->GetPolyPolygon(); in Impl_writeActions() local 1571 if( rPolyPoly.Count() ) in Impl_writeActions() [all …]
|
| H A D | swfwriter.hxx | 295 sal_uInt16 defineShape( const PolyPolygon& rPolyPoly, const FillStyle& rFillStyle ); 299 …sal_uInt16 defineShape( const PolyPolygon& rPolyPoly, sal_uInt16 nLineWidth, const Color& rLineCol… 367 …void Impl_writePolyPolygon( const PolyPolygon& rPolyPoly, sal_Bool bFilled, sal_uInt8 nTransparenc… 368 …void Impl_writePolyPolygon( const PolyPolygon& rPolyPoly, sal_Bool bFilled, const Color& rFillColo… 371 void Impl_writeGradientEx( const PolyPolygon& rPolyPoly, const Gradient& rGradient );
|
| /AOO41X/main/svtools/source/filter/wmf/ |
| H A D | emfwr.cxx | 596 void EMFWriter::ImplWritePolyPolygonRecord( const PolyPolygon& rPolyPoly ) in ImplWritePolyPolygonRecord() argument 598 sal_uInt16 n, i, nPolyCount = rPolyPoly.Count(); in ImplWritePolyPolygonRecord() 603 ImplWritePolygonRecord( rPolyPoly[ 0 ], sal_True ); in ImplWritePolyPolygonRecord() 611 nTotalPoints += rPolyPoly[ i ].GetSize(); in ImplWritePolyPolygonRecord() 612 if ( rPolyPoly[ i ].HasFlags() ) in ImplWritePolyPolygonRecord() 618 ImplWritePath( rPolyPoly, sal_True ); in ImplWritePolyPolygonRecord() 625 ImplWriteRect( rPolyPoly.GetBoundRect() ); in ImplWritePolyPolygonRecord() 629 (*mpStm) << (sal_uInt32)rPolyPoly[ i ].GetSize(); in ImplWritePolyPolygonRecord() 633 const Polygon& rPoly = rPolyPoly[ i ]; in ImplWritePolyPolygonRecord() 647 void EMFWriter::ImplWritePath( const PolyPolygon& rPolyPoly, sal_Bool bClosed ) in ImplWritePath() argument [all …]
|
| /AOO41X/main/filter/source/svg/ |
| H A D | svgwriter.cxx | 462 PolyPolygon& SVGActionWriter::ImplMap( const PolyPolygon& rPolyPoly, PolyPolygon& rDstPolyPoly ) co… in ImplMap() argument 468 for( sal_uInt16 i = 0, nCount = rPolyPoly.Count(); i < nCount; ++i ) in ImplMap() 470 rDstPolyPoly.Insert( ImplMap( rPolyPoly[ i ], aPoly ) ); in ImplMap() 478 ::rtl::OUString SVGActionWriter::GetPathString( const PolyPolygon& rPolyPoly, sal_Bool bLine ) in GetPathString() argument 485 for( long i = 0, nCount = rPolyPoly.Count(); i < nCount; i++ ) in GetPathString() 487 const Polygon& rPoly = rPolyPoly[ (sal_uInt16) i ]; in GetPathString() 629 void SVGActionWriter::ImplWritePolyPolygon( const PolyPolygon& rPolyPoly, sal_Bool bLineOnly, in ImplWritePolyPolygon() argument 635 ImplMap( rPolyPoly, aPolyPoly ); in ImplWritePolyPolygon() 637 aPolyPoly = rPolyPoly; in ImplWritePolyPolygon() 751 void SVGActionWriter::ImplWriteGradientEx( const PolyPolygon& rPolyPoly, const Gradient& rGradient, in ImplWriteGradientEx() argument [all …]
|
| /AOO41X/main/vcl/inc/vcl/ |
| H A D | outdev.hxx | 441 …SAL_DLLPRIVATE void ImplGetEmphasisMark( PolyPolygon& rPolyPoly, sal_Bool& rPolyLine, Rect… 442 …ImplDrawEmphasisMark( long nBaseX, long nX, long nY, const PolyPolygon& rPolyPoly, sal_Bool bPolyL… 473 …SAL_DLLPRIVATE void ImplDrawPolyPolygon( const PolyPolygon& rPolyPoly, const PolyPolygon* … 474 … SAL_DLLPRIVATE void ImplDrawPolyPolygon( sal_uInt16 nPoly, const PolyPolygon& rPolyPoly ); 478 …SAL_DLLPRIVATE void ImplDrawHatch( const PolyPolygon& rPolyPoly, const Hatch& rHatch, sal_… 480 …SAL_DLLPRIVATE void ImplDrawHatchLine( const Line& rLine, const PolyPolygon& rPolyPoly, Po… 746 void DrawPolyPolygon( const PolyPolygon& rPolyPoly ); 813 void DrawGradient( const PolyPolygon& rPolyPoly, const Gradient& rGradient ); 819 void DrawHatch( const PolyPolygon& rPolyPoly, const ::Hatch& rHatch ); 820 void AddHatchActions( const PolyPolygon& rPolyPoly, [all …]
|
| H A D | region.hxx | 61 SAL_DLLPRIVATE void ImplCreatePolyPolyRegion( const PolyPolygon& rPolyPoly ); 62 SAL_DLLPRIVATE void ImplCreatePolyPolyRegion( const basegfx::B2DPolyPolygon& rPolyPoly ); 71 Region(const PolyPolygon& rPolyPoly); 131 static Region GetRegionFromPolyPolygon( const PolyPolygon& rPolyPoly );
|
| /AOO41X/main/svx/source/customshapes/ |
| H A D | EnhancedCustomShapeFontWork.cxx | 393 PolyPolygon& rPolyPoly = *aOutlineIter++; in GetTextAreaOutline() local 396 rPolyPoly.Move( 0, nVerticalOffset ); in GetTextAreaOutline() 399 Rectangle aBoundRect( rPolyPoly.GetBoundRect() ); in GetTextAreaOutline() 698 PolyPolygon& rPolyPoly = *aOutlineIter; in FitTextOutlinesToShapeOutlines() local 699 Rectangle aBoundRect( rPolyPoly.GetBoundRect() ); in FitTextOutlinesToShapeOutlines() 721 …rPolyPoly.Rotate( Point( aBoundRect.Center().X(), aParagraphIter->aBoundRect.Center().Y() ), sin( … in FitTextOutlinesToShapeOutlines() 722 …rPolyPoly.Move( (sal_Int32)( ( fx1 + fvx )- aBoundRect.Center().X() ), (sal_Int32)( ( fy1 + fvy ) … in FitTextOutlinesToShapeOutlines() 761 PolyPolygon& rPolyPoly = *aOutlineIter; in FitTextOutlinesToShapeOutlines() local 762 sal_uInt16 i, nPolyCount = rPolyPoly.Count(); in FitTextOutlinesToShapeOutlines() 766 basegfx::B2DPolygon aCandidate(rPolyPoly[ i ].getB2DPolygon()); in FitTextOutlinesToShapeOutlines() [all …]
|
| /AOO41X/main/svx/source/unodraw/ |
| H A D | unoshap2.cxx | 1169 void SAL_CALL B2DPolyPolygonToSvxPointSequenceSequence( const basegfx::B2DPolyPolygon& rPolyPoly, d… in B2DPolyPolygonToSvxPointSequenceSequence() argument 1171 if( (sal_uInt32)rRetval.getLength() != rPolyPoly.count() ) in B2DPolyPolygonToSvxPointSequenceSequence() 1172 rRetval.realloc( rPolyPoly.count() ); in B2DPolyPolygonToSvxPointSequenceSequence() 1177 for(sal_uInt32 a(0L); a < rPolyPoly.count(); a++) in B2DPolyPolygonToSvxPointSequenceSequence() 1180 const basegfx::B2DPolygon aPoly(rPolyPoly.getB2DPolygon(a)); in B2DPolyPolygonToSvxPointSequenceSequence() 1220 const basegfx::B2DPolyPolygon& rPolyPoly = GetPolygon(); in getPropertyValueImpl() local 1221 drawing::PointSequenceSequence aRetval( rPolyPoly.count() ); in getPropertyValueImpl() 1223 B2DPolyPolygonToSvxPointSequenceSequence( rPolyPoly, aRetval ); in getPropertyValueImpl() 1245 const basegfx::B2DPolyPolygon& rPolyPoly = GetPolygon(); in getPropertyValueImpl() local 1248 if( rPolyPoly.count() > 0 ) in getPropertyValueImpl() [all …]
|
| /AOO41X/main/chart2/source/view/charttypes/ |
| H A D | AreaChart.cxx | 236 void lcl_removeDuplicatePoints( drawing::PolyPolygonShape3D& rPolyPoly, PlottingPositionHelper& rPo… in lcl_removeDuplicatePoints() argument 238 sal_Int32 nPolyCount = rPolyPoly.SequenceX.getLength(); in lcl_removeDuplicatePoints() 249 drawing::DoubleSequence* pOuterSourceX = &rPolyPoly.SequenceX.getArray()[nPolygonIndex]; in lcl_removeDuplicatePoints() 250 drawing::DoubleSequence* pOuterSourceY = &rPolyPoly.SequenceY.getArray()[nPolygonIndex]; in lcl_removeDuplicatePoints() 251 drawing::DoubleSequence* pOuterSourceZ = &rPolyPoly.SequenceZ.getArray()[nPolygonIndex]; in lcl_removeDuplicatePoints() 307 rPolyPoly.SequenceX.realloc(nPolyCount); in lcl_removeDuplicatePoints() 308 rPolyPoly.SequenceY.realloc(nPolyCount); in lcl_removeDuplicatePoints() 309 rPolyPoly.SequenceZ.realloc(nPolyCount); in lcl_removeDuplicatePoints() 311 rPolyPoly=aTmp; in lcl_removeDuplicatePoints()
|
| /AOO41X/main/sw/source/filter/ww8/ |
| H A D | writerhelper.cxx | 711 Polygon PolygonFromPolyPolygon(const PolyPolygon &rPolyPoly) in PolygonFromPolyPolygon() argument 713 if(1 == rPolyPoly.Count()) in PolygonFromPolyPolygon() 715 return rPolyPoly[0]; in PolygonFromPolyPolygon() 726 for(a = 0; a < rPolyPoly.Count(); a++) in PolygonFromPolyPolygon() 728 nPointCount += (sal_uInt32)rPolyPoly[a].GetSize(); in PolygonFromPolyPolygon() 740 for(a = 0; a < rPolyPoly.Count(); a++) in PolygonFromPolyPolygon() 742 const Polygon& rCandidate = rPolyPoly[a]; in PolygonFromPolyPolygon()
|