Home
last modified time | relevance | path

Searched refs:B2DPolygon (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/aoo41x/main/basegfx/inc/basegfx/polygon/
H A Db2dpolygontools.hxx41 class B2DPolygon;
351 B2DPolygon createSimplifiedPolygon(const B2DPolygon&);
378 B2DPolygon expandToCurve(const B2DPolygon& rCandidate);
397 B2DPolygon removeNeutralPoints(const B2DPolygon& rCandidate);
421 void addTriangleFan(const B2DPolygon& rCandidate, B2DPolygon& rTarget);
425 B2DPolygon growInNormalDirection(const B2DPolygon& rCandidate, double fValue);
428 B2DPolygon reSegmentPolygon(const B2DPolygon& rCandidate, sal_uInt32 nSegments);
432 B2DPolygon interpolate(const B2DPolygon& rOld1, const B2DPolygon& rOld2, double t);
437 B2DPolygon simplifyCurveSegments(const B2DPolygon& rCandidate);
516 bool equal(const B2DPolygon& rCandidateA, const B2DPolygon& rCandidateB);
[all …]
H A Db2dpolygon.hxx38 class B2DPolygon;
49 class B2DPolygon class
60 B2DPolygon();
61 B2DPolygon(const B2DPolygon& rPolygon);
62 B2DPolygon(const B2DPolygon& rPolygon, sal_uInt32 nIndex, sal_uInt32 nCount);
63 ~B2DPolygon();
66 B2DPolygon& operator=(const B2DPolygon& rPolygon);
72 bool operator==(const B2DPolygon& rPolygon) const;
73 bool operator!=(const B2DPolygon& rPolygon) const;
170 B2DPolygon getDefaultAdaptiveSubdivision() const;
[all …]
H A Db2dpolygoncutandtouch.hxx38 B2DPolygon addPointsAtCutsAndTouches(const B2DPolygon& rCandidate);
48 B2DPolygon addPointsAtCutsAndTouches(const B2DPolyPolygon& rMask, const B2DPolygon& rCandidate);
56B2DPolygon addPointsAtCuts(const B2DPolygon& rCandidate, const B2DPoint& rStart, const B2DPoint& r…
61 B2DPolygon addPointsAtCuts(const B2DPolygon& rCandidate, const B2DPolyPolygon& rMask);
66 B2DPolygon addPointsAtCuts(const B2DPolygon& rCandidate);
H A Db2dpolypolygon.hxx36 class B2DPolygon;
55 explicit B2DPolyPolygon(const B2DPolygon& rPolygon);
71 B2DPolygon getB2DPolygon(sal_uInt32 nIndex) const;
72 void setB2DPolygon(sal_uInt32 nIndex, const B2DPolygon& rPolygon);
78 void insert(sal_uInt32 nIndex, const B2DPolygon& rPolygon, sal_uInt32 nCount = 1);
79 void append(const B2DPolygon& rPolygon, sal_uInt32 nCount = 1);
126 const B2DPolygon* begin() const;
127 const B2DPolygon* end() const;
128 B2DPolygon* begin();
129 B2DPolygon* end();
H A Db2dpolygonclipper.hxx46 …B2DPolyPolygon clipPolygonOnParallelAxis(const B2DPolygon& rCandidate, bool bParallelToXAxis, bool…
52 …B2DPolyPolygon clipPolygonOnRange(const B2DPolygon& rCandidate, const B2DRange& rRange, bool bInsi…
59 …B2DPolyPolygon clipPolygonOnEdge(const B2DPolygon& rCandidate, const B2DPoint& rPointA, const B2DP…
68 …B2DPolyPolygon clipPolygonOnPolyPolygon(const B2DPolygon& rCandidate, const B2DPolyPolygon& rClip,…
73 B2DPolygon clipTriangleListOnRange( const B2DPolygon& rCandidate, const B2DRange& rRange );
/aoo41x/main/basegfx/source/polygon/
H A Db2dpolygon.cxx1201 B2DPolygon::B2DPolygon() in B2DPolygon() function in basegfx::B2DPolygon
1205 B2DPolygon::B2DPolygon(const B2DPolygon& rPolygon) in B2DPolygon() function in basegfx::B2DPolygon
1209 B2DPolygon::B2DPolygon(const B2DPolygon& rPolygon, sal_uInt32 nIndex, sal_uInt32 nCount) in B2DPolygon() function in basegfx::B2DPolygon
1217 B2DPolygon::~B2DPolygon() in ~B2DPolygon()
1221 B2DPolygon& B2DPolygon::operator=(const B2DPolygon& rPolygon) in operator =()
1232 bool B2DPolygon::operator==(const B2DPolygon& rPolygon) const in operator ==()
1240 bool B2DPolygon::operator!=(const B2DPolygon& rPolygon) const in operator !=()
1514 B2DPolygon B2DPolygon::getDefaultAdaptiveSubdivision() const in getDefaultAdaptiveSubdivision()
1548 void B2DPolygon::append(const B2DPolygon& rPoly, sal_uInt32 nIndex, sal_uInt32 nCount) in append()
1580 void B2DPolygon::clear() in clear()
[all …]
H A Db2dpolygontools.cxx181 B2DPolygon aRetval; in adaptiveSubdivideByDistance()
264 B2DPolygon aRetval; in adaptiveSubdivideByAngle()
337 B2DPolygon aRetval; in adaptiveSubdivideByCount()
2127 B2DPolygon removeNeutralPoints(const B2DPolygon& rCandidate) in removeNeutralPoints()
2334 void addTriangleFan(const B2DPolygon& rCandidate, B2DPolygon& rTarget) in addTriangleFan()
2492 B2DPolygon aRetval; in createB2DPolygonFromB3DPolygon()
2727 B2DPolygon expandToCurve(const B2DPolygon& rCandidate) in expandToCurve()
2997 B2DPolygon aRetval; in reSegmentPolygon()
3104 B2DPolygon interpolate(const B2DPolygon& rOld1, const B2DPolygon& rOld2, double t) in interpolate()
3193 B2DPolygon createSimplifiedPolygon( const B2DPolygon& rCandidate ) in createSimplifiedPolygon()
[all …]
H A Db2dpolypolygon.cxx48 ImplB2DPolyPolygon(const basegfx::B2DPolygon& rToBeCopied) : in ImplB2DPolyPolygon()
66 const basegfx::B2DPolygon& getB2DPolygon(sal_uInt32 nIndex) const in getB2DPolygon()
161 const basegfx::B2DPolygon* begin() const in begin()
169 const basegfx::B2DPolygon* end() const in end()
177 basegfx::B2DPolygon* begin() in begin()
185 basegfx::B2DPolygon* end() in end()
211 B2DPolyPolygon::B2DPolyPolygon(const B2DPolygon& rPolygon) : in B2DPolyPolygon()
405 const B2DPolygon* B2DPolyPolygon::begin() const in begin()
410 const B2DPolygon* B2DPolyPolygon::end() const in end()
415 B2DPolygon* B2DPolyPolygon::begin() in begin()
[all …]
H A Db2dpolygoncutandtouch.cxx89 B2DPolygon maPolygon;
111 B2DPolygon aRetval; in mergeTemporaryPointsAndPolygon()
421 B2DPolygon aTempPolygonA; in findEdgeCutsBezierAndEdge()
422 B2DPolygon aTempPolygonEdge; in findEdgeCutsBezierAndEdge()
462 B2DPolygon aTempPolygonA; in findEdgeCutsTwoBeziers()
463 B2DPolygon aTempPolygonB; in findEdgeCutsTwoBeziers()
508 B2DPolygon aTempPolygon; in findEdgeCutsOneBezier()
705 B2DPolygon aTempPolygon; in findTouchesOnCurve()
904 B2DPolygon addPointsAtCutsAndTouches(const B2DPolygon& rCandidate) in addPointsAtCutsAndTouches()
1008 B2DPolygon addPointsAtCutsAndTouches(const B2DPolyPolygon& rMask, const B2DPolygon& rCandidate) in addPointsAtCutsAndTouches()
[all …]
H A Db2dpolypolygontools.cxx47 const B2DPolygon aCandidate(rCandidate.getB2DPolygon(a)); in correctOrientations()
55 const B2DPolygon aCompare(rCandidate.getB2DPolygon(b)); in correctOrientations()
69 B2DPolygon aFlipped(aCandidate); in correctOrientations()
86 const B2DPolygon aCandidate(rCandidate.getB2DPolygon(a)); in correctOutmostPolygon()
93 const B2DPolygon aCompare(rCandidate.getB2DPolygon(b)); in correctOutmostPolygon()
131 const B2DPolygon aCandidate(rCandidate.getB2DPolygon(a)); in adaptiveSubdivideByDistance()
223 const B2DPolygon aPolygon(rCandidate.getB2DPolygon(a)); in isInside()
243 B2DPolygon aCandidate = rCandidate.getB2DPolygon(a); in getRangeWithControlPoints()
257 B2DPolygon aCandidate = rCandidate.getB2DPolygon(a); in getRange()
326 B2DPolygon aCandidate(rCandidate.getB2DPolygon(a)); in isInEpsilonRange()
[all …]
H A Db2dpolygonclipper.cxx102 const B2DPolygon aCandidate(addPointsAtCuts(rCandidate, aStart, aEnd)); in clipPolygonOnParallelAxis()
106 B2DPolygon aRun; in clipPolygonOnParallelAxis()
150 const B2DPolygon aStartPolygon(aRetval.getB2DPolygon(0)); in clipPolygonOnParallelAxis()
246 const B2DPolygon aClip(createPolygonFromRect(rRange)); in clipPolygonOnRange()
338 const B2DPolygon aClip(createPolygonFromRect(rRange)); in clipPolyPolygonOnRange()
358 B2DPolygon aCandidate(rCandidate); in clipPolygonOnEdge()
428 … const B2DPolygon aCandidate(addPointsAtCuts(rCandidate.getB2DPolygon(a), rClip)); in clipPolyPolygonOnPolyPolygon()
432 B2DPolygon aRun; in clipPolyPolygonOnPolyPolygon()
472 const B2DPolygon aStartPolygon(aRetval.getB2DPolygon(0)); in clipPolyPolygonOnPolyPolygon()
661 B2DPolygon clipTriangleListOnRange( const B2DPolygon& rCandidate, in clipTriangleListOnRange()
[all …]
H A Db2dlinegeometry.cxx47 const B2DPolygon& rCandidate, in createAreaGeometryForLineStartEnd()
228B2DPolygon subdivideToSimple(const B2DPolygon& rCandidate, double fMaxCosQuad, double fMaxPartOfEd… in subdivideToSimple()
235 B2DPolygon aRetval; in subdivideToSimple()
343 B2DPolygon createAreaGeometryForEdge( in createAreaGeometryForEdge()
358 B2DPolygon aBezierPolygon; in createAreaGeometryForEdge()
588 B2DPolygon aEdgePolygon; in createAreaGeometryForEdge()
635 basegfx::B2DPolygon aEndPolygon(tools::createHalfUnitCircle()); in createAreaGeometryForEdge()
680 B2DPolygon createAreaGeometryForJoin( in createAreaGeometryForJoin()
694 B2DPolygon aEdgePolygon; in createAreaGeometryForJoin()
792 const B2DPolygon& rCandidate, in createAreaGeometry()
[all …]
H A Db2dpolygontriangulator.cxx131 B2DPolygon maResult;
141 const B2DPolygon getResult() const { return maResult; } in getResult()
240 const B2DPolygon aPolygonCandidate(rCandidate.getB2DPolygon(a)); in Triangulator()
404 B2DPolygon triangulate(const B2DPolygon& rCandidate) in triangulate()
406 B2DPolygon aRetval; in triangulate()
409B2DPolygon aCandidate(rCandidate.areControlPointsUsed() ? tools::adaptiveSubdivideByAngle(rCandida… in triangulate()
437 B2DPolygon triangulate(const B2DPolyPolygon& rCandidate) in triangulate()
439 B2DPolygon aRetval; in triangulate()
447 const B2DPolygon aSinglePolygon(aCandidate.getB2DPolygon(0L)); in triangulate()
H A Db2dpolypolygoncutter.cxx520 solver(const B2DPolygon& rOriginal) in solver()
578 const B2DPolygon aCandidate(aGeometry.getB2DPolygon(a)); in solver()
604 const B2DPolygon aCandidate(aGeometry.getB2DPolygon(a)); in solver()
638 B2DPolygon aNewPart; in getB2DPolyPolygon()
748 B2DPolyPolygon solveCrossovers(const B2DPolygon& rCandidate) in solveCrossovers()
762 const B2DPolygon aCandidate(rCandidate.getB2DPolygon(a)); in stripNeutralPolygons()
803 const B2DPolygon aCand(aCandidate.getB2DPolygon(a)); in createNonzeroConform()
814 const B2DPolygon aCandA(aCandidate.getB2DPolygon(a)); in createNonzeroConform()
885 const B2DPolygon aCandidate(rCandidate.getB2DPolygon(a)); in stripDispensablePolygons()
894 const B2DPolygon aCandA(rCandidate.getB2DPolygon(a)); in stripDispensablePolygons()
[all …]
/aoo41x/main/drawinglayer/inc/drawinglayer/primitive2d/
H A Dpolygonprimitive2d.hxx55 basegfx::B2DPolygon maPolygon;
63 const basegfx::B2DPolygon& rPolygon,
102 basegfx::B2DPolygon maPolygon;
121 const basegfx::B2DPolygon& rPolygon,
164 basegfx::B2DPolygon maPolygon;
179 const basegfx::B2DPolygon& rPolygon,
185 const basegfx::B2DPolygon& rPolygon,
231 const basegfx::B2DPolygon& rPolygon,
239 const basegfx::B2DPolygon& rPolygon,
287 const basegfx::B2DPolygon& rPolygon,
[all …]
/aoo41x/main/sd/source/ui/func/
H A Dfumorph.cxx158 ::basegfx::B2DPolygon aSub1(aPolyPoly1.getB2DPolygon(a)); in DoExecute()
159 ::basegfx::B2DPolygon aSub2(aPolyPoly2.getB2DPolygon(a)); in DoExecute()
198 ::basegfx::B2DPolygon ImpGetExpandedPolygon(const ::basegfx::B2DPolygon& rCandidate, sal_uInt32 nNu… in ImpGetExpandedPolygon()
203 ::basegfx::B2DPolygon aRetval; in ImpGetExpandedPolygon()
249 void FuMorph::ImpEqualizePolyPointCount(::basegfx::B2DPolygon& rSmall, const ::basegfx::B2DPolygon&… in ImpEqualizePolyPointCount()
253 ::basegfx::B2DPolygon aPoly1(ImpGetExpandedPolygon(rSmall, nCnt)); in ImpEqualizePolyPointCount()
266 ::basegfx::B2DPolygon aPoly2; in ImpEqualizePolyPointCount()
310 ::basegfx::B2DPolygon aNewPoly; in ImpAddPolys()
454 const ::basegfx::B2DPolygon aPolyStart(rPolyPolyStart.getB2DPolygon(a)); in ImpCreateMorphedPolygon()
455 const ::basegfx::B2DPolygon aPolyEnd(rPolyPolyEnd.getB2DPolygon(a)); in ImpCreateMorphedPolygon()
[all …]
/aoo41x/main/basegfx/source/tools/
H A Db2dclipstate.cxx61 explicit ImplB2DClipState( const B2DPolygon& rPoly ) : in ImplB2DClipState()
108 maClipPoly.append(B2DPolygon()); in makeNull()
135 void addPolygon(B2DPolygon aPoly, Operation eOp) in addPolygon()
183 void unionPolygon(const B2DPolygon& rPoly) in unionPolygon()
215 void intersectPolygon(const B2DPolygon& rPoly) in intersectPolygon()
247 void subtractPolygon(const B2DPolygon& rPoly) in subtractPolygon()
276 void xorPolygon(const B2DPolygon& rPoly) in xorPolygon()
515 B2DClipState::B2DClipState( const B2DPolygon& rPoly ) : in B2DClipState()
572 void B2DClipState::unionPolygon(const B2DPolygon& rPoly) in unionPolygon()
612 void B2DClipState::subtractPolygon(const B2DPolygon& rPoly) in subtractPolygon()
[all …]
H A Dunopolypolygon.cxx197 B2DPolygon aTmp( maPolyPoly.getB2DPolygon(index) ); in setClosed()
249 const B2DPolygon& rPoly( maPolyPoly.getB2DPolygon( nPolygonIndex ) ); in getPoint()
266 B2DPolygon aPoly( maPolyPoly.getB2DPolygon( nPolygonIndex ) ); in setPoint()
319 const B2DPolygon& rPoly( maPolyPoly.getB2DPolygon( nPolygonIndex ) ); in getBezierSegment()
346 B2DPolygon aPoly( maPolyPoly.getB2DPolygon( nPolygonIndex ) ); in setBezierSegment()
391 const B2DPolygon& rCurrPoly( maPolyPoly.getB2DPolygon(i) ); in getSubsetPolyPolygon()
435 B2DPolygon aTmp; in getSubsetPolyPolygon()
/aoo41x/main/drawinglayer/source/primitive2d/
H A Dpolygonprimitive2d.cxx48 const basegfx::B2DPolygon& rPolygon, in PolygonHairlinePrimitive2D()
136 const basegfx::B2DPolygon& rPolygon, in PolygonMarkerPrimitive2D()
233 … const basegfx::B2DPolygon aB2DPolygon(basegfx::tools::simplifyCurveSegments(getB2DPolygon())); in create2DDecomposition()
307 const basegfx::B2DPolygon& rPolygon, in PolygonStrokePrimitive2D()
318 const basegfx::B2DPolygon& rPolygon, in PolygonStrokePrimitive2D()
425 …const basegfx::B2DPolygon aWaveline(basegfx::tools::createWaveline(getB2DPolygon(), getWaveWidth()… in create2DDecomposition()
441 const basegfx::B2DPolygon& rPolygon, in PolygonWavePrimitive2D()
462 const basegfx::B2DPolygon& rPolygon, in PolygonWavePrimitive2D()
529 basegfx::B2DPolygon aLocalPolygon(getB2DPolygon()); in create2DDecomposition()
602 const basegfx::B2DPolygon& rPolygon, in PolygonStrokeArrowPrimitive2D()
[all …]
H A Dfillgradientprimitive2d.cxx116 const basegfx::B2DPolygon& rUnitPolygon) const in createOverlappingFill()
131 basegfx::B2DPolygon aNewPoly(rUnitPolygon); in createOverlappingFill()
148 const basegfx::B2DPolygon& rUnitPolygon) const in createNonOverlappingFill()
160 basegfx::B2DPolygon aFirstPoly(rUnitPolygon); in createNonOverlappingFill()
182 basegfx::B2DPolygon aNextPoly(rUnitPolygon); in createNonOverlappingFill()
210 basegfx::B2DPolygon aUnitPolygon; in createFill()
/aoo41x/main/basegfx/inc/basegfx/tools/
H A Db2dclipstate.hxx36 class B2DPolygon;
67 explicit B2DClipState( const B2DPolygon& );
88 void unionPolygon(const B2DPolygon& );
93 void intersectPolygon(const B2DPolygon& );
98 void subtractPolygon(const B2DPolygon& );
103 void xorPolygon(const B2DPolygon& );
/aoo41x/main/sw/source/ui/docvw/
H A DAnchorOverlayObject.cxx50 basegfx::B2DPolygon maTriangle;
51 basegfx::B2DPolygon maLine;
52 basegfx::B2DPolygon maLineTop;
68 AnchorPrimitive( const basegfx::B2DPolygon& rTriangle, in AnchorPrimitive()
69 const basegfx::B2DPolygon& rLine, in AnchorPrimitive()
70 const basegfx::B2DPolygon& rLineTop, in AnchorPrimitive()
88 const basegfx::B2DPolygon& getTriangle() const { return maTriangle; } in getTriangle()
89 const basegfx::B2DPolygon& getLine() const { return maLine; } in getLine()
90 const basegfx::B2DPolygon& getLineTop() const { return maLineTop; } in getLineTop()
/aoo41x/main/vcl/inc/vcl/
H A Doutdev.hxx90 class B2DPolygon;
462 SAL_DLLPRIVATE ::basegfx::B2DPolygon ImplLogicToDevicePixel( const ::basegfx::B2DPolygon& ) const;
563 const basegfx::B2DPolygon& rB2DPolygon,
699 const basegfx::B2DPolygon&,
704 const basegfx::B2DPolygon& rB2DPolygon,
734 void DrawPolygon( const basegfx::B2DPolygon& );
1018 basegfx::B2DPolygon LogicToPixel( const basegfx::B2DPolygon& rLogicPolyPoly ) const;
1030 basegfx::B2DPolygon LogicToPixel( const basegfx::B2DPolygon& rLogicPoly,
1042 basegfx::B2DPolygon PixelToLogic( const basegfx::B2DPolygon& rDevicePoly ) const;
1054 basegfx::B2DPolygon PixelToLogic( const basegfx::B2DPolygon& rDevicePoly,
[all …]
/aoo41x/main/drawinglayer/source/processor2d/
H A Dvclmetafileprocessor2d.cxx97 const basegfx::B2DPolygon& rBasePolygon, in splitLinePolygon()
98 basegfx::B2DPolygon& o_aLeft, in splitLinePolygon()
99 basegfx::B2DPolygon& o_aRight) in splitLinePolygon()
107 o_aLeft = basegfx::B2DPolygon(rBasePolygon, 0, nHalfCount + 1); in splitLinePolygon()
110 o_aRight = basegfx::B2DPolygon(rBasePolygon, nHalfCount, nCount - nHalfCount); in splitLinePolygon()
145 const basegfx::B2DPolygon aCandidate(rPolyPolygon.getB2DPolygon(a)); in fillPolyPolygonNeededToBeSplit()
362 const basegfx::B2DPolygon& rB2DPolygon, in impTryToCreateSvtGraphicStroke()
373 basegfx::B2DPolygon aLocalPolygon(rB2DPolygon); in impTryToCreateSvtGraphicStroke()
1165 basegfx::B2DPolygon aLeft, aRight; in processBasePrimitive2D()
1213 basegfx::B2DPolygon aLeft, aRight; in processBasePrimitive2D()
[all …]
/aoo41x/main/slideshow/source/engine/transitions/
H A Dfigurewipe.cxx50 ::basegfx::B2DPolygon figure; in createTriangleWipe()
63 ::basegfx::B2DPolygon figure; in createArrowHeadWipe()
76 ::basegfx::B2DPolygon figure; in createPentagonWipe()
90 ::basegfx::B2DPolygon figure; in createHexagonWipe()
105 ::basegfx::B2DPolygon figure; in createStarWipe()

Completed in 142 milliseconds

12345678910>>...12