Home
last modified time | relevance | path

Searched refs:B2DPolyPolygon (Results 1 – 25 of 469) sorted by relevance

12345678910>>...19

/AOO41X/main/basegfx/inc/basegfx/polygon/
H A Db2dpolypolygontools.hxx44 class B2DPolyPolygon;
54 B2DPolyPolygon correctOrientations(const B2DPolyPolygon& rCandidate);
59 B2DPolyPolygon correctOutmostPolygon(const B2DPolyPolygon& rCandidate);
62B2DPolyPolygon adaptiveSubdivideByDistance(const B2DPolyPolygon& rCandidate, double fDistanceBound…
66B2DPolyPolygon adaptiveSubdivideByAngle(const B2DPolyPolygon& rCandidate, double fAngleBound = 0.0…
70B2DPolyPolygon adaptiveSubdivideByCount(const B2DPolyPolygon& rCandidate, sal_uInt32 nCount = 0L);
74 … bool isInside(const B2DPolyPolygon& rCandidate, const B2DPoint& rPoint, bool bWithBorder = false);
87 B2DRange getRangeWithControlPoints(const B2DPolyPolygon& rCandidate);
100 B2DRange getRange(const B2DPolyPolygon& rCandidate);
103 double getSignedArea(const B2DPolyPolygon& rCandidate);
[all …]
H A Db2dpolypolygoncutter.hxx42 B2DPolyPolygon solveCrossovers(const B2DPolyPolygon& rCandidate);
47 B2DPolyPolygon solveCrossovers(const B2DPolygon& rCandidate);
53 B2DPolyPolygon stripNeutralPolygons(const B2DPolyPolygon& rCandidate);
66B2DPolyPolygon stripDispensablePolygons(const B2DPolyPolygon& rCandidate, bool bKeepAboveZero = fa…
73 B2DPolyPolygon createNonzeroConform(const B2DPolyPolygon& rCandidate);
92 B2DPolyPolygon prepareForPolygonOperation(const B2DPolygon& rCandidate);
93 B2DPolyPolygon prepareForPolygonOperation(const B2DPolyPolygon& rCandidate);
96B2DPolyPolygon solvePolygonOperationOr(const B2DPolyPolygon& rCandidateA, const B2DPolyPolygon& rC…
99B2DPolyPolygon solvePolygonOperationXor(const B2DPolyPolygon& rCandidateA, const B2DPolyPolygon& r…
102B2DPolyPolygon solvePolygonOperationAnd(const B2DPolyPolygon& rCandidateA, const B2DPolyPolygon& r…
[all …]
H A Db2dpolygoncutandtouch.hxx44B2DPolyPolygon addPointsAtCutsAndTouches(const B2DPolyPolygon& rCandidate, bool bSelfIntersections…
48 … B2DPolygon addPointsAtCutsAndTouches(const B2DPolyPolygon& rMask, const B2DPolygon& rCandidate);
52B2DPolyPolygon addPointsAtCutsAndTouches(const B2DPolyPolygon& rMask, const B2DPolyPolygon& rCandi…
57B2DPolyPolygon addPointsAtCuts(const B2DPolyPolygon& rCandidate, const B2DPoint& rStart, const B2D…
61 B2DPolygon addPointsAtCuts(const B2DPolygon& rCandidate, const B2DPolyPolygon& rMask);
62B2DPolyPolygon addPointsAtCuts(const B2DPolyPolygon& rCandidate, const B2DPolyPolygon& rMask);
70B2DPolyPolygon addPointsAtCuts(const B2DPolyPolygon& rCandidate, bool bSelfIntersections = true);
H A Db2dpolygonclipper.hxx45B2DPolyPolygon clipPolyPolygonOnParallelAxis(const B2DPolyPolygon& rCandidate, bool bParallelToXAx…
46B2DPolyPolygon clipPolygonOnParallelAxis(const B2DPolygon& rCandidate, bool bParallelToXAxis, bool…
51B2DPolyPolygon clipPolyPolygonOnRange(const B2DPolyPolygon& rCandidate, const B2DRange& rRange, bo…
52B2DPolyPolygon clipPolygonOnRange(const B2DPolygon& rCandidate, const B2DRange& rRange, bool bInsi…
58B2DPolyPolygon clipPolyPolygonOnEdge(const B2DPolyPolygon& rCandidate, const B2DPoint& rPointA, co…
59B2DPolyPolygon clipPolygonOnEdge(const B2DPolygon& rCandidate, const B2DPoint& rPointA, const B2DP…
67B2DPolyPolygon clipPolyPolygonOnPolyPolygon(const B2DPolyPolygon& rCandidate, const B2DPolyPolygon
68B2DPolyPolygon clipPolygonOnPolyPolygon(const B2DPolygon& rCandidate, const B2DPolyPolygon& rClip,…
H A Db2dpolypolygon.hxx44 class B2DPolyPolygon class
53 B2DPolyPolygon();
54 B2DPolyPolygon(const B2DPolyPolygon& rPolyPolygon);
55 explicit B2DPolyPolygon(const B2DPolygon& rPolygon);
56 ~B2DPolyPolygon();
59 B2DPolyPolygon& operator=(const B2DPolyPolygon& rPolyPolygon);
65 bool operator==(const B2DPolyPolygon& rPolyPolygon) const;
66 bool operator!=(const B2DPolyPolygon& rPolyPolygon) const;
88 B2DPolyPolygon getDefaultAdaptiveSubdivision() const;
100 void insert(sal_uInt32 nIndex, const B2DPolyPolygon& rPolyPolygon);
[all …]
/AOO41X/main/basegfx/source/polygon/
H A Db2dpolypolygontools.cxx40 B2DPolyPolygon correctOrientations(const B2DPolyPolygon& rCandidate) in correctOrientations()
42 B2DPolyPolygon aRetval(rCandidate); in correctOrientations()
78 B2DPolyPolygon correctOutmostPolygon(const B2DPolyPolygon& rCandidate) in correctOutmostPolygon()
104 B2DPolyPolygon aRetval(rCandidate); in correctOutmostPolygon()
122B2DPolyPolygon adaptiveSubdivideByDistance(const B2DPolyPolygon& rCandidate, double fDistanceBound) in adaptiveSubdivideByDistance()
127 B2DPolyPolygon aRetval; in adaptiveSubdivideByDistance()
151B2DPolyPolygon adaptiveSubdivideByAngle(const B2DPolyPolygon& rCandidate, double fAngleBound) in adaptiveSubdivideByAngle()
156 B2DPolyPolygon aRetval; in adaptiveSubdivideByAngle()
180 B2DPolyPolygon adaptiveSubdivideByCount(const B2DPolyPolygon& rCandidate, sal_uInt32 nCount) in adaptiveSubdivideByCount()
185 B2DPolyPolygon aRetval; in adaptiveSubdivideByCount()
[all …]
H A Db2dpolypolygon.cxx87 void insert(sal_uInt32 nIndex, const basegfx::B2DPolyPolygon& rPolyPolygon) in insert()
198 namespace { struct DefaultPolyPolygon: public rtl::Static<B2DPolyPolygon::ImplType,
201 B2DPolyPolygon::B2DPolyPolygon() : in B2DPolyPolygon() function in basegfx::B2DPolyPolygon
206 B2DPolyPolygon::B2DPolyPolygon(const B2DPolyPolygon& rPolyPolygon) : in B2DPolyPolygon() function in basegfx::B2DPolyPolygon
211 B2DPolyPolygon::B2DPolyPolygon(const B2DPolygon& rPolygon) : in B2DPolyPolygon() function in basegfx::B2DPolyPolygon
216 B2DPolyPolygon::~B2DPolyPolygon() in ~B2DPolyPolygon()
220 B2DPolyPolygon& B2DPolyPolygon::operator=(const B2DPolyPolygon& rPolyPolygon) in operator =()
226 void B2DPolyPolygon::makeUnique() in makeUnique()
232 bool B2DPolyPolygon::operator==(const B2DPolyPolygon& rPolyPolygon) const in operator ==()
240 bool B2DPolyPolygon::operator!=(const B2DPolyPolygon& rPolyPolygon) const in operator !=()
[all …]
H A Db2dpolypolygoncutter.cxx121 const B2DPolyPolygon maOriginal;
521 : maOriginal(B2DPolyPolygon(rOriginal)), in solver()
555 solver(const B2DPolyPolygon& rOriginal) in solver()
564 B2DPolyPolygon aGeometry(tools::addPointsAtCutsAndTouches(maOriginal, true)); in solver()
623 B2DPolyPolygon getB2DPolyPolygon() in getB2DPolyPolygon()
627 B2DPolyPolygon aRetval; in getB2DPolyPolygon()
687 basegfx::B2DPolyPolygon aRetval(maOriginal); in getB2DPolyPolygon()
733 B2DPolyPolygon solveCrossovers(const B2DPolyPolygon& rCandidate) in solveCrossovers()
748 B2DPolyPolygon solveCrossovers(const B2DPolygon& rCandidate) in solveCrossovers()
756 B2DPolyPolygon stripNeutralPolygons(const B2DPolyPolygon& rCandidate) in stripNeutralPolygons()
[all …]
H A Db2dpolygonclipper.cxx44B2DPolyPolygon clipPolygonOnParallelAxis(const B2DPolygon& rCandidate, bool bParallelToXAxis, bool… in clipPolygonOnParallelAxis()
46 B2DPolyPolygon aRetval; in clipPolygonOnParallelAxis()
175B2DPolyPolygon clipPolyPolygonOnParallelAxis(const B2DPolyPolygon& rCandidate, bool bParallelToXAx… in clipPolyPolygonOnParallelAxis()
178 B2DPolyPolygon aRetval; in clipPolyPolygonOnParallelAxis()
182 …const B2DPolyPolygon aClippedPolyPolygon(clipPolygonOnParallelAxis(rCandidate.getB2DPolygon(a), bP… in clipPolyPolygonOnParallelAxis()
193B2DPolyPolygon clipPolygonOnRange(const B2DPolygon& rCandidate, const B2DRange& rRange, bool bInsi… in clipPolygonOnRange()
196 B2DPolyPolygon aRetval; in clipPolygonOnRange()
214 return B2DPolyPolygon(rCandidate); in clipPolygonOnRange()
226 return B2DPolyPolygon(rCandidate); in clipPolygonOnRange()
248 … return clipPolygonOnPolyPolygon(rCandidate, B2DPolyPolygon(aClip), bInside, bStroke); in clipPolygonOnRange()
[all …]
/AOO41X/main/drawinglayer/inc/drawinglayer/primitive2d/
H A Dpolypolygonprimitive2d.hxx56 basegfx::B2DPolyPolygon maPolyPolygon;
67 …PolyPolygonHairlinePrimitive2D(const basegfx::B2DPolyPolygon& rPolyPolygon, const basegfx::BColor&…
70 const basegfx::B2DPolyPolygon& getB2DPolyPolygon() const { return maPolyPolygon; } in getB2DPolyPolygon()
102 basegfx::B2DPolyPolygon maPolyPolygon;
118 const basegfx::B2DPolyPolygon& rPolyPolygon,
124 const basegfx::B2DPolyPolygon& getB2DPolyPolygon() const { return maPolyPolygon; } in getB2DPolyPolygon()
158 basegfx::B2DPolyPolygon maPolyPolygon;
173 const basegfx::B2DPolyPolygon& rPolyPolygon,
179 const basegfx::B2DPolyPolygon& rPolyPolygon,
183 const basegfx::B2DPolyPolygon& getB2DPolyPolygon() const { return maPolyPolygon; } in getB2DPolyPolygon()
[all …]
/AOO41X/main/vcl/source/gdi/
H A Dregion.cxx317 basegfx::B2DPolyPolygon Region::ImplCreateB2DPolyPolygonFromRegionBand() const in ImplCreateB2DPolyPolygonFromRegionBand()
369 Region::Region(const basegfx::B2DPolyPolygon& rPolyPoly) in Region()
421 void Region::ImplCreatePolyPolyRegion( const basegfx::B2DPolyPolygon& rPolyPoly ) in ImplCreatePolyPolyRegion()
425 mpB2DPolyPolygon.reset(new basegfx::B2DPolyPolygon(rPolyPoly)); in ImplCreatePolyPolyRegion()
446 basegfx::B2DPolyPolygon aPoly(*getB2DPolyPolygon()); in Move()
449 mpB2DPolyPolygon.reset(aPoly.count() ? new basegfx::B2DPolyPolygon(aPoly) : 0); in Move()
493 basegfx::B2DPolyPolygon aPoly(*getB2DPolyPolygon()); in Scale()
496 mpB2DPolyPolygon.reset(aPoly.count() ? new basegfx::B2DPolyPolygon(aPoly) : 0); in Scale()
542 basegfx::B2DPolyPolygon aThisPolyPoly(GetAsB2DPolyPolygon()); in Union()
561 const basegfx::B2DPolyPolygon aClip( in Union()
[all …]
H A Dgdimetafiletools.cxx41 const basegfx::B2DPolyPolygon& rClip, in handleGeometricContent()
42 const basegfx::B2DPolyPolygon& rSource, in handleGeometricContent()
48 const basegfx::B2DPolyPolygon aResult( in handleGeometricContent()
88 const basegfx::B2DPolyPolygon& rClip, in handleGradientContent()
89 const basegfx::B2DPolyPolygon& rSource, in handleGradientContent()
95 const basegfx::B2DPolyPolygon aResult( in handleGradientContent()
124 const basegfx::B2DPolyPolygon& rClip, in handleBitmapContent()
139 const basegfx::B2DPolyPolygon aClipOfBitmap( in handleBitmapContent()
190 basegfx::B2DPolyPolygon aPixelPoly(aClipOfBitmap); in handleBitmapContent()
202 basegfx::B2DPolyPolygon aInvertPixelPoly; in handleBitmapContent()
[all …]
/AOO41X/main/basegfx/source/tools/
H A Db2dclipstate.cxx68 explicit ImplB2DClipState( const B2DPolyPolygon& rPoly ) : in ImplB2DClipState()
145 void addPolyPolygon(B2DPolyPolygon aPoly, Operation eOp) in addPolyPolygon()
191 void unionPolyPolygon(const B2DPolyPolygon& rPolyPoly) in unionPolyPolygon()
223 void intersectPolyPolygon(const B2DPolyPolygon& rPolyPoly) in intersectPolyPolygon()
255 void subtractPolyPolygon(const B2DPolyPolygon& rPolyPoly) in subtractPolyPolygon()
281 void xorPolyPolygon(const B2DPolyPolygon& rPolyPoly) in xorPolyPolygon()
291 B2DPolyPolygon getClipPoly() const in getClipPoly()
348 B2DPolyPolygon( in commitPendingPolygons()
377 B2DPolyPolygon( in commitPendingPolygons()
398 B2DPolyPolygon aCollectedRanges; in commitPendingRanges()
[all …]
/AOO41X/main/svx/inc/svx/
H A Dsvdopath.hxx48 basegfx::B2DPolyPolygon maPathPolygon;
67 basegfx::B2DPolyPolygon maPathPolygon;
82 …static sal_Bool ImpFindPolyPnt(const basegfx::B2DPolyPolygon& rPoly, sal_uInt32 nAbsPnt, sal_uInt3…
88 SdrPathObj(SdrObjKind eNewKind, const basegfx::B2DPolyPolygon& rPathPoly);
98 virtual basegfx::B2DPolyPolygon TakeXorPoly() const;
112 virtual basegfx::B2DPolyPolygon getSpecialDragPoly(const SdrDragStat& rDrag) const;
119 virtual basegfx::B2DPolyPolygon TakeCreatePoly(const SdrDragStat& rDrag) const;
123 basegfx::B2DPolyPolygon getObjectPolyPolygon(const SdrDragStat& rDrag) const;
124 basegfx::B2DPolyPolygon getDragPolyPolygon(const SdrDragStat& rDrag) const;
156 const basegfx::B2DPolyPolygon& GetPathPoly() const { return maPathPolygon; } in GetPathPoly()
[all …]
/AOO41X/main/drawinglayer/source/attribute/
H A Dsdrlinestartendattribute.cxx41 … basegfx::B2DPolyPolygon maStartPolyPolygon; // start Line PolyPolygon
42 basegfx::B2DPolyPolygon maEndPolyPolygon; // end Line PolyPolygon
53 const basegfx::B2DPolyPolygon& rStartPolyPolygon, in ImpSdrLineStartEndAttribute()
54 const basegfx::B2DPolyPolygon& rEndPolyPolygon, in ImpSdrLineStartEndAttribute()
74 … const basegfx::B2DPolyPolygon& getStartPolyPolygon() const { return maStartPolyPolygon; } in getStartPolyPolygon()
75 const basegfx::B2DPolyPolygon& getEndPolyPolygon() const { return maEndPolyPolygon; } in getEndPolyPolygon()
102 basegfx::B2DPolyPolygon(), in get_global_default()
103 basegfx::B2DPolyPolygon(), in get_global_default()
120 const basegfx::B2DPolyPolygon& rStartPolyPolygon, in SdrLineStartEndAttribute()
121 const basegfx::B2DPolyPolygon& rEndPolyPolygon, in SdrLineStartEndAttribute()
[all …]
/AOO41X/main/basebmp/test/
H A Dfilltest.cxx72 basegfx::B2DPolyPolygon( in implTestRectFill()
107 basegfx::B2DPolyPolygon( in implTestCornerCases()
115 basegfx::B2DPolyPolygon( in implTestCornerCases()
123 basegfx::B2DPolyPolygon( in implTestCornerCases()
134 basegfx::B2DPolyPolygon( in implTestCornerCases()
145 basegfx::B2DPolyPolygon( in implTestCornerCases()
156 basegfx::B2DPolyPolygon( in implTestCornerCases()
169 basegfx::B2DPolyPolygon aPoly; in implTestCornerCases()
190 rDevice->fillPolyPolygon( basegfx::B2DPolyPolygon( in implTestClipping()
197 rDevice->fillPolyPolygon( basegfx::B2DPolyPolygon( in implTestClipping()
[all …]
/AOO41X/main/drawinglayer/source/primitive2d/
H A Dpolypolygonprimitive2d.cxx54 const basegfx::B2DPolyPolygon aPolyPolygon(getB2DPolyPolygon()); in create2DDecomposition()
74 …onHairlinePrimitive2D::PolyPolygonHairlinePrimitive2D(const basegfx::B2DPolyPolygon& rPolyPolygon,… in PolyPolygonHairlinePrimitive2D()
114 const basegfx::B2DPolyPolygon aPolyPolygon(getB2DPolyPolygon()); in create2DDecomposition()
140 const basegfx::B2DPolyPolygon& rPolyPolygon, in PolyPolygonMarkerPrimitive2D()
187 const basegfx::B2DPolyPolygon aPolyPolygon(getB2DPolyPolygon()); in create2DDecomposition()
210 const basegfx::B2DPolyPolygon& rPolyPolygon, in PolyPolygonStrokePrimitive2D()
221 const basegfx::B2DPolyPolygon& rPolyPolygon, in PolyPolygonStrokePrimitive2D()
272 const basegfx::B2DPolyPolygon aPolyPolygon(getB2DPolyPolygon()); in create2DDecomposition()
306 const basegfx::B2DPolyPolygon& rPolyPolygon, in PolyPolygonStrokeArrowPrimitive2D()
318 const basegfx::B2DPolyPolygon& rPolyPolygon, in PolyPolygonStrokeArrowPrimitive2D()
[all …]
/AOO41X/main/sd/source/ui/func/
H A Dfumorph.cxx105 ::basegfx::B2DPolyPolygon aPolyPoly1; in DoExecute()
106 ::basegfx::B2DPolyPolygon aPolyPoly2; in DoExecute()
107 ::basegfx::B2DPolyPolygon* pPolyPoly; in DoExecute()
183 …for(pPolyPoly = (::basegfx::B2DPolyPolygon*)aPolyPolyList.First(); pPolyPoly; pPolyPoly = (::baseg… in DoExecute()
303 void FuMorph::ImpAddPolys(::basegfx::B2DPolyPolygon& rSmaller, const ::basegfx::B2DPolyPolygon& rBi… in ImpAddPolys()
401 …const ::basegfx::B2DPolyPolygon& rPolyPoly3D = *(::basegfx::B2DPolyPolygon*)rPolyPolyList3D.GetObj… in ImpInsertPolygons()
444 ::basegfx::B2DPolyPolygon* FuMorph::ImpCreateMorphedPolygon( in ImpCreateMorphedPolygon()
445 const ::basegfx::B2DPolyPolygon& rPolyPolyStart, in ImpCreateMorphedPolygon()
446 const ::basegfx::B2DPolyPolygon& rPolyPolyEnd, in ImpCreateMorphedPolygon()
449 ::basegfx::B2DPolyPolygon* pNewPolyPolygon = new ::basegfx::B2DPolyPolygon(); in ImpCreateMorphedPolygon()
[all …]
/AOO41X/main/sd/source/ui/inc/
H A Dfumorph.hxx36 class B2DPolyPolygon;
62 ::basegfx::B2DPolyPolygon* ImpCreateMorphedPolygon(
63 const ::basegfx::B2DPolyPolygon& rPolyPolyStart,
64 const ::basegfx::B2DPolyPolygon& rPolyPolyEnd,
67 const ::basegfx::B2DPolyPolygon& rPolyPoly1, const ::basegfx::B2DPolyPolygon& rPolyPoly2,
69 void ImpAddPolys(::basegfx::B2DPolyPolygon& rSmaller, const ::basegfx::B2DPolyPolygon& rBigger);
/AOO41X/main/cppcanvas/source/mtfrenderer/
H A Dpolypolyaction.cxx61 PolyPolyAction( const ::basegfx::B2DPolyPolygon&,
66 PolyPolyAction( const ::basegfx::B2DPolyPolygon&,
97 PolyPolyAction::PolyPolyAction( const ::basegfx::B2DPolyPolygon& rPolyPoly, in PolyPolyAction()
118 PolyPolyAction::PolyPolyAction( const ::basegfx::B2DPolyPolygon& rPolyPoly, in PolyPolyAction()
259 TexturedPolyPolyAction( const ::basegfx::B2DPolyPolygon& rPoly,
287 … TexturedPolyPolyAction::TexturedPolyPolyAction( const ::basegfx::B2DPolyPolygon& rPolyPoly, in TexturedPolyPolyAction()
373 StrokedPolyPolyAction( const ::basegfx::B2DPolyPolygon& rPoly,
399 … StrokedPolyPolyAction::StrokedPolyPolyAction( const ::basegfx::B2DPolyPolygon& rPolyPoly, in StrokedPolyPolyAction()
479 …ionSharedPtr PolyPolyActionFactory::createPolyPolyAction( const ::basegfx::B2DPolyPolygon& rPoly, in createPolyPolyAction()
490 …nSharedPtr PolyPolyActionFactory::createPolyPolyAction( const ::basegfx::B2DPolyPolygon& rPoly, in createPolyPolyAction()
[all …]
/AOO41X/main/svx/source/table/
H A Dtablehandles.cxx55 basegfx::B2DPolyPolygon maPolyPolygon;
62 OverlayTableEdge( const basegfx::B2DPolyPolygon& rPolyPolygon, bool bVisible );
104 basegfx::B2DPolyPolygon TableEdgeHdl::getSpecialDragPoly(const SdrDragStat& rDrag) const in getSpecialDragPoly()
106 basegfx::B2DPolyPolygon aVisible; in getSpecialDragPoly()
107 basegfx::B2DPolyPolygon aInvisible; in getSpecialDragPoly()
116 void TableEdgeHdl::getPolyPolygon(basegfx::B2DPolyPolygon& rVisible, basegfx::B2DPolyPolygon& rInvi… in getPolyPolygon()
167 basegfx::B2DPolyPolygon aVisible; in CreateB2dIAObject()
168 basegfx::B2DPolyPolygon aInvisible; in CreateB2dIAObject()
210 OverlayTableEdge::OverlayTableEdge( const basegfx::B2DPolyPolygon& rPolyPolygon, bool bVisible ) in OverlayTableEdge()
/AOO41X/main/slideshow/source/engine/transitions/
H A Dsnakewipe.cxx48 ::basegfx::B2DPolyPolygon SnakeWipe::calcSnake( double t ) const in calcSnake()
50 ::basegfx::B2DPolyPolygon res; in calcSnake()
88 ::basegfx::B2DPolyPolygon SnakeWipe::calcHalfDiagonalSnake( in calcHalfDiagonalSnake()
91 ::basegfx::B2DPolyPolygon res; in calcHalfDiagonalSnake()
182 ::basegfx::B2DPolyPolygon SnakeWipe::operator () ( double t ) in operator ()()
184 ::basegfx::B2DPolyPolygon res; in operator ()()
200 ::basegfx::B2DPolyPolygon ParallelSnakesWipe::operator () ( double t ) in operator ()()
202 ::basegfx::B2DPolyPolygon res; in operator ()()
206 ::basegfx::B2DPolyPolygon half( in operator ()()
226 ::basegfx::B2DPolyPolygon half( calcSnake( t / 2.0 ) ); in operator ()()
H A Dspiralwipe.cxx48 ::basegfx::B2DPolyPolygon SpiralWipe::calcNegSpiral( double t ) const in calcNegSpiral()
61 ::basegfx::B2DPolyPolygon res(poly); in calcNegSpiral()
90 ::basegfx::B2DPolyPolygon SpiralWipe::operator () ( double t ) in operator ()()
92 ::basegfx::B2DPolyPolygon res( createUnitRect() ); in operator ()()
93 ::basegfx::B2DPolyPolygon innerSpiral( calcNegSpiral( 1.0 - t ) ); in operator ()()
99 ::basegfx::B2DPolyPolygon BoxSnakesWipe::operator () ( double t ) in operator ()()
101 ::basegfx::B2DPolyPolygon res( createUnitRect() ); in operator ()()
102 ::basegfx::B2DPolyPolygon innerSpiral( calcNegSpiral( 1.0 - t ) ); in operator ()()
/AOO41X/main/basegfx/inc/basegfx/tools/
H A Db2dclipstate.hxx37 class B2DPolyPolygon;
68 explicit B2DClipState( const B2DPolyPolygon& );
89 void unionPolyPolygon(const B2DPolyPolygon& );
94 void intersectPolyPolygon(const B2DPolyPolygon& );
99 void subtractPolyPolygon(const B2DPolyPolygon& );
104 void xorPolyPolygon(const B2DPolyPolygon& );
107 B2DPolyPolygon getClipPoly() const;
/AOO41X/main/slideshow/source/engine/
H A Dslideview.cxx128 basegfx::B2DPolyPolygon createClipPolygon( const basegfx::B2DPolyPolygon& rClip, in createClipPolygon()
144 return basegfx::B2DPolyPolygon(basegfx::tools::createPolygonFromRect(aClipRange)); in createClipPolygon()
155 basegfx::B2DPolyPolygon prepareClip( const basegfx::B2DPolyPolygon& rClip ) in prepareClip()
157 basegfx::B2DPolyPolygon aClip( rClip ); in prepareClip()
179 ::basegfx::B2DPolyPolygon const* pClipPoly( pCanvas->getClip() ); in clearRect()
182 ::basegfx::B2DPolyPolygon aClipPoly( *pClipPoly ); in clearRect()
423 basegfx::B2DPolyPolygon maClip;
637 virtual void setClip( const basegfx::B2DPolyPolygon& rClip ) in setClip()
639 basegfx::B2DPolyPolygon aNewClip = prepareClip( rClip ); in setClip()
704 virtual void setClip( const ::basegfx::B2DPolyPolygon& rClip );
[all …]

12345678910>>...19