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;
49 void openWithGeometryChange(B2DPolygon& rCandidate);
50 void closeWithGeometryChange(B2DPolygon& rCandidate);
61 void checkClosed(B2DPolygon& rCandidate);
65 sal_uInt32 getIndexOfPredecessor(sal_uInt32 nIndex, const B2DPolygon& rCandidate);
66 sal_uInt32 getIndexOfSuccessor(sal_uInt32 nIndex, const B2DPolygon& rCandidate);
69 B2VectorOrientation getOrientation(const B2DPolygon& rCandidate);
73 … bool isInside(const B2DPolygon& rCandidate, const B2DPoint& rPoint, bool bWithBorder = false);
74 … bool isInside(const B2DPolygon& rCandidate, const B2DPolygon& rPolygon, bool bWithBorder = false);
86 B2DRange getRangeWithControlPoints(const B2DPolygon& rCandidate);
[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);
48B2DPolygon 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.cxx524 boost::scoped_ptr< basegfx::B2DPolygon > mpDefaultSubdivision;
535 … const basegfx::B2DPolygon& getDefaultAdaptiveSubdivision(const basegfx::B2DPolygon& rSource) const in getDefaultAdaptiveSubdivision()
539 …st< ImplBufferedData* >(this)->mpDefaultSubdivision.reset(new basegfx::B2DPolygon(basegfx::tools::… in getDefaultAdaptiveSubdivision()
545 const basegfx::B2DRange& getB2DRange(const basegfx::B2DPolygon& rSource) const in getB2DRange()
634 … const basegfx::B2DPolygon& getDefaultAdaptiveSubdivision(const basegfx::B2DPolygon& rSource) const in getDefaultAdaptiveSubdivision()
649 const basegfx::B2DRange& getB2DRange(const basegfx::B2DPolygon& rSource) const in getB2DRange()
1198 struct DefaultPolygon: public rtl::Static<B2DPolygon::ImplType, DefaultPolygon> {};
1201 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
[all …]
H A Db2dpolygontools.cxx60 void openWithGeometryChange(B2DPolygon& rCandidate) in openWithGeometryChange()
79 void closeWithGeometryChange(B2DPolygon& rCandidate) in closeWithGeometryChange()
97 void checkClosed(B2DPolygon& rCandidate) in checkClosed()
110 sal_uInt32 getIndexOfPredecessor(sal_uInt32 nIndex, const B2DPolygon& rCandidate) in getIndexOfPredecessor()
128 sal_uInt32 getIndexOfSuccessor(sal_uInt32 nIndex, const B2DPolygon& rCandidate) in getIndexOfSuccessor()
146 B2VectorOrientation getOrientation(const B2DPolygon& rCandidate) in getOrientation()
171 B2VectorContinuity getContinuityInPoint(const B2DPolygon& rCandidate, sal_uInt32 nIndex) in getContinuityInPoint()
176 B2DPolygon adaptiveSubdivideByDistance(const B2DPolygon& rCandidate, double fDistanceBound) in adaptiveSubdivideByDistance()
181 B2DPolygon aRetval; in adaptiveSubdivideByDistance()
259 B2DPolygon adaptiveSubdivideByAngle(const B2DPolygon& rCandidate, double fAngleBound) in adaptiveSubdivideByAngle()
[all …]
H A Db2dpolypolygon.cxx48 ImplB2DPolyPolygon(const basegfx::B2DPolygon& rToBeCopied) : in ImplB2DPolyPolygon()
66 const basegfx::B2DPolygon& getB2DPolygon(sal_uInt32 nIndex) const in getB2DPolygon()
71 void setB2DPolygon(sal_uInt32 nIndex, const basegfx::B2DPolygon& rPolygon) in setB2DPolygon()
76 void insert(sal_uInt32 nIndex, const basegfx::B2DPolygon& rPolygon, sal_uInt32 nCount) in insert()
136 std::mem_fun_ref( &basegfx::B2DPolygon::flip )); in flip()
143 std::mem_fun_ref( &basegfx::B2DPolygon::removeDoublePoints )); in removeDoublePoints()
158 std::mem_fun_ref( &basegfx::B2DPolygon::makeUnique )); in makeUnique()
161 const basegfx::B2DPolygon* begin() const in begin()
169 const basegfx::B2DPolygon* end() const in end()
177 basegfx::B2DPolygon* begin() in begin()
[all …]
H A Db2dpolygoncutandtouch.cxx89 B2DPolygon maPolygon;
94 const B2DPolygon& getPolygon() const { return maPolygon; } in getPolygon()
95 …void setPolygon(const B2DPolygon& rNew) { maPolygon = rNew; maRange = tools::getRange(maPolygon); } in setPolygon()
102B2DPolygon mergeTemporaryPointsAndPolygon(const B2DPolygon& rCandidate, temporaryPointVector& rTem… in mergeTemporaryPointsAndPolygon()
111 B2DPolygon aRetval; in mergeTemporaryPointsAndPolygon()
194 const temporaryPointVector& rPointVector, const B2DPolygon& rPolygon, in adaptAndTransferCutsWithBezierSegment()
230 void findCuts(const B2DPolygon& rCandidate, temporaryPointVector& rTempPoints);
231 …void findTouches(const B2DPolygon& rEdgePolygon, const B2DPolygon& rPointPolygon, temporaryPointVe…
232 …void findCuts(const B2DPolygon& rCandidateA, const B2DPolygon& rCandidateB, temporaryPointVector& …
290 …void findCutsAndTouchesAndCommonForBezier(const B2DPolygon& rCandidateA, const B2DPolygon& rCandid… in findCutsAndTouchesAndCommonForBezier()
[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()
160 const B2DPolygon aCandidate(rCandidate.getB2DPolygon(a)); in adaptiveSubdivideByAngle()
189 const B2DPolygon aCandidate(rCandidate.getB2DPolygon(a)); in adaptiveSubdivideByCount()
223 const B2DPolygon aPolygon(rCandidate.getB2DPolygon(a)); in isInside()
243 B2DPolygon aCandidate = rCandidate.getB2DPolygon(a); in getRangeWithControlPoints()
[all …]
H A Db2dpolygonclipper.cxx44 …B2DPolyPolygon clipPolygonOnParallelAxis(const B2DPolygon& rCandidate, bool bParallelToXAxis, bool… in clipPolygonOnParallelAxis()
102 const B2DPolygon aCandidate(addPointsAtCuts(rCandidate, aStart, aEnd)); in clipPolygonOnParallelAxis()
106 B2DPolygon aRun; in clipPolygonOnParallelAxis()
150 const B2DPolygon aStartPolygon(aRetval.getB2DPolygon(0)); in clipPolygonOnParallelAxis()
193 …B2DPolyPolygon clipPolygonOnRange(const B2DPolygon& rCandidate, const B2DRange& rRange, bool bInsi… in clipPolygonOnRange()
246 const B2DPolygon aClip(createPolygonFromRect(rRange)); in clipPolygonOnRange()
338 const B2DPolygon aClip(createPolygonFromRect(rRange)); in clipPolyPolygonOnRange()
346 …B2DPolyPolygon clipPolygonOnEdge(const B2DPolygon& rCandidate, const B2DPoint& rPointA, const B2DP… in clipPolygonOnEdge()
358 B2DPolygon aCandidate(rCandidate); in clipPolygonOnEdge()
428 … const B2DPolygon aCandidate(addPointsAtCuts(rCandidate.getB2DPolygon(a), rClip)); in clipPolyPolygonOnPolyPolygon()
[all …]
H A Db2dlinegeometry.cxx47 const B2DPolygon& rCandidate, in createAreaGeometryForLineStartEnd()
212 …void impSubdivideToSimple(const B2DCubicBezier& rCandidate, B2DPolygon& rTarget, double fMaxCosQua… in impSubdivideToSimple()
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()
396 basegfx::B2DPolygon aStartPolygon(tools::createHalfUnitCircle()); in createAreaGeometryForEdge()
459 basegfx::B2DPolygon aEndPolygon(tools::createHalfUnitCircle()); in createAreaGeometryForEdge()
588 B2DPolygon aEdgePolygon; in createAreaGeometryForEdge()
635 basegfx::B2DPolygon aEndPolygon(tools::createHalfUnitCircle()); in createAreaGeometryForEdge()
[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.cxx130 void impAddPolygon(const sal_uInt32 aPos, const B2DPolygon& rGeometry) in impAddPolygon()
520 solver(const B2DPolygon& rOriginal) in solver()
529 B2DPolygon aGeometry(tools::addPointsAtCutsAndTouches(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()
691 basegfx::B2DPolygon aTemp(aRetval.getB2DPolygon(a)); 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()
[all …]
/AOO41X/main/drawinglayer/inc/drawinglayer/primitive2d/
H A Dpolygonprimitive2d.hxx55 basegfx::B2DPolygon maPolygon;
63 const basegfx::B2DPolygon& rPolygon,
67 const basegfx::B2DPolygon& getB2DPolygon() const { return maPolygon; } in getB2DPolygon()
102 basegfx::B2DPolygon maPolygon;
121 const basegfx::B2DPolygon& rPolygon,
127 const basegfx::B2DPolygon& getB2DPolygon() const { return maPolygon; } in getB2DPolygon()
164 basegfx::B2DPolygon maPolygon;
179 const basegfx::B2DPolygon& rPolygon,
185 const basegfx::B2DPolygon& rPolygon,
189 const basegfx::B2DPolygon& getB2DPolygon() const { return maPolygon; } in getB2DPolygon()
[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()
281 sal_uInt32 FuMorph::ImpGetNearestIndex(const ::basegfx::B2DPolygon& rPoly, const ::basegfx::B2DPoin… in ImpGetNearestIndex()
307 const ::basegfx::B2DPolygon aToBeCopied(rBigger.getB2DPolygon(rSmaller.count())); in ImpAddPolys()
310 ::basegfx::B2DPolygon aNewPoly; in ImpAddPolys()
[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()
592 void B2DClipState::intersectPolygon(const B2DPolygon& rPoly) in intersectPolygon()
[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()
1159 const basegfx::B2DPolygon& rBasePolygon = rHairlinePrimitive.getB2DPolygon(); in processBasePrimitive2D()
1165 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()

12345678910>>...12