| /AOO42X/main/basegfx/inc/basegfx/polygon/ |
| H A D | b2dpolygontools.hxx | 42 class B2DPolygon; 50 BASEGFX_DLLPUBLIC void openWithGeometryChange(B2DPolygon& rCandidate); 51 BASEGFX_DLLPUBLIC void closeWithGeometryChange(B2DPolygon& rCandidate); 62 BASEGFX_DLLPUBLIC void checkClosed(B2DPolygon& rCandidate); 66 …BASEGFX_DLLPUBLIC sal_uInt32 getIndexOfPredecessor(sal_uInt32 nIndex, const B2DPolygon& rCandidate… 67 … BASEGFX_DLLPUBLIC sal_uInt32 getIndexOfSuccessor(sal_uInt32 nIndex, const B2DPolygon& rCandidate); 70 BASEGFX_DLLPUBLIC B2VectorOrientation getOrientation(const B2DPolygon& rCandidate); 74 …BASEGFX_DLLPUBLIC bool isInside(const B2DPolygon& rCandidate, const B2DPoint& rPoint, bool bWithBo… 75 …BASEGFX_DLLPUBLIC bool isInside(const B2DPolygon& rCandidate, const B2DPolygon& rPolygon, bool bWi… 87 BASEGFX_DLLPUBLIC B2DRange getRangeWithControlPoints(const B2DPolygon& rCandidate); [all …]
|
| H A D | b2dpolygon.hxx | 39 class B2DPolygon; 50 class BASEGFX_DLLPUBLIC B2DPolygon class 61 B2DPolygon(); 62 B2DPolygon(const B2DPolygon& rPolygon); 63 B2DPolygon(const B2DPolygon& rPolygon, sal_uInt32 nIndex, sal_uInt32 nCount); 64 ~B2DPolygon(); 67 B2DPolygon& operator=(const B2DPolygon& rPolygon); 73 bool operator==(const B2DPolygon& rPolygon) const; 74 bool operator!=(const B2DPolygon& rPolygon) const; 171 B2DPolygon getDefaultAdaptiveSubdivision() const; [all …]
|
| H A D | b2dpolygoncutandtouch.hxx | 39 BASEGFX_DLLPUBLIC B2DPolygon addPointsAtCutsAndTouches(const B2DPolygon& rCandidate); 49 …BASEGFX_DLLPUBLIC B2DPolygon addPointsAtCutsAndTouches(const B2DPolyPolygon& rMask, const B2DPolyg… 57 …BASEGFX_DLLPUBLIC B2DPolygon addPointsAtCuts(const B2DPolygon& rCandidate, const B2DPoint& rStart,… 62 …BASEGFX_DLLPUBLIC B2DPolygon addPointsAtCuts(const B2DPolygon& rCandidate, const B2DPolyPolygon& r… 67 BASEGFX_DLLPUBLIC B2DPolygon addPointsAtCuts(const B2DPolygon& rCandidate);
|
| H A D | b2dpolypolygon.hxx | 37 class B2DPolygon; 56 explicit B2DPolyPolygon(const B2DPolygon& rPolygon); 72 B2DPolygon getB2DPolygon(sal_uInt32 nIndex) const; 73 void setB2DPolygon(sal_uInt32 nIndex, const B2DPolygon& rPolygon); 79 void insert(sal_uInt32 nIndex, const B2DPolygon& rPolygon, sal_uInt32 nCount = 1); 80 void append(const B2DPolygon& rPolygon, sal_uInt32 nCount = 1); 127 const B2DPolygon* begin() const; 128 const B2DPolygon* end() const; 129 B2DPolygon* begin(); 130 B2DPolygon* end();
|
| H A D | b2dpolygonclipper.hxx | 47 …BASEGFX_DLLPUBLIC B2DPolyPolygon clipPolygonOnParallelAxis(const B2DPolygon& rCandidate, bool bPar… 53 …BASEGFX_DLLPUBLIC B2DPolyPolygon clipPolygonOnRange(const B2DPolygon& rCandidate, const B2DRange& … 60 …BASEGFX_DLLPUBLIC B2DPolyPolygon clipPolygonOnEdge(const B2DPolygon& rCandidate, const B2DPoint& r… 69 …BASEGFX_DLLPUBLIC B2DPolyPolygon clipPolygonOnPolyPolygon(const B2DPolygon& rCandidate, const B2DP… 74 …BASEGFX_DLLPUBLIC B2DPolygon clipTriangleListOnRange( const B2DPolygon& rCandidate, const B2DRange…
|
| /AOO42X/main/basegfx/source/polygon/ |
| H A D | b2dpolygon.cxx | 524 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 D | b2dpolygontools.cxx | 60 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 D | b2dpolypolygon.cxx | 48 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 D | b2dpolygoncutandtouch.cxx | 89 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() 102 …B2DPolygon 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 D | b2dpolypolygontools.cxx | 47 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 D | b2dpolygonclipper.cxx | 44 …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() 430 … const B2DPolygon aCandidate(addPointsAtCuts(rCandidate.getB2DPolygon(a), rClip)); in clipPolyPolygonOnPolyPolygon() [all …]
|
| H A D | b2dlinegeometry.cxx | 43 const B2DPolygon& rCandidate, in createAreaGeometryForLineStartEnd() 208 …void impSubdivideToSimple(const B2DCubicBezier& rCandidate, B2DPolygon& rTarget, double fMaxCosQua… in impSubdivideToSimple() 224 …B2DPolygon subdivideToSimple(const B2DPolygon& rCandidate, double fMaxCosQuad, double fMaxPartOfEd… in subdivideToSimple() 231 B2DPolygon aRetval; in subdivideToSimple() 339 B2DPolygon createAreaGeometryForEdge( in createAreaGeometryForEdge() 354 B2DPolygon aBezierPolygon; in createAreaGeometryForEdge() 392 basegfx::B2DPolygon aStartPolygon(tools::createHalfUnitCircle()); in createAreaGeometryForEdge() 455 basegfx::B2DPolygon aEndPolygon(tools::createHalfUnitCircle()); in createAreaGeometryForEdge() 584 B2DPolygon aEdgePolygon; in createAreaGeometryForEdge() 631 basegfx::B2DPolygon aEndPolygon(tools::createHalfUnitCircle()); in createAreaGeometryForEdge() [all …]
|
| H A D | b2dpolygontriangulator.cxx | 131 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() 409 …B2DPolygon 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 D | b2dpolypolygoncutter.cxx | 130 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 …]
|
| /AOO42X/main/drawinglayer/inc/drawinglayer/primitive2d/ |
| H A D | polygonprimitive2d.hxx | 55 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 …]
|
| /AOO42X/main/sd/source/ui/func/ |
| H A D | fumorph.cxx | 158 ::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 …]
|
| /AOO42X/main/basegfx/source/tools/ |
| H A D | b2dclipstate.cxx | 61 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 D | unopolypolygon.cxx | 197 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()
|
| /AOO42X/main/drawinglayer/source/primitive2d/ |
| H A D | polygonprimitive2d.cxx | 48 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 D | fillgradientprimitive2d.cxx | 161 const basegfx::B2DPolygon& rUnitPolygon) const in createOverlappingFill() 177 basegfx::B2DPolygon aNewPoly(rUnitPolygon); in createOverlappingFill() 194 const basegfx::B2DPolygon& rUnitPolygon) const in createNonOverlappingFill() 206 basegfx::B2DPolygon aFirstPoly(rUnitPolygon); in createNonOverlappingFill() 228 basegfx::B2DPolygon aNextPoly(rUnitPolygon); in createNonOverlappingFill() 256 basegfx::B2DPolygon aUnitPolygon; in createFill()
|
| /AOO42X/main/basegfx/inc/basegfx/tools/ |
| H A D | b2dclipstate.hxx | 37 class B2DPolygon; 68 explicit B2DClipState( const B2DPolygon& ); 89 void unionPolygon(const B2DPolygon& ); 94 void intersectPolygon(const B2DPolygon& ); 99 void subtractPolygon(const B2DPolygon& ); 104 void xorPolygon(const B2DPolygon& );
|
| /AOO42X/main/sw/source/ui/docvw/ |
| H A D | AnchorOverlayObject.cxx | 50 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()
|
| /AOO42X/main/vcl/inc/vcl/ |
| H A D | outdev.hxx | 90 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 …]
|
| /AOO42X/main/drawinglayer/source/processor2d/ |
| H A D | vclmetafileprocessor2d.cxx | 97 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 …]
|
| /AOO42X/main/filter/source/graphicfilter/ipict/ |
| H A D | shape.cxx | 72 B2DPolygon poly; in drawLineHQ() 130 B2DPolygon poly; in drawLine() 147 B2DPolygon poly; in drawRectangle() 166 B2DPolygon poly = tools::createPolygonFromEllipse(center, 0.5*(X[1]-X[0]), 0.5*(Y[1]-Y[0])); in drawEllipse() 199 …B2DPolygon poly = tools::createPolygonFromEllipseSegment(center, 0.5*(X[1]-X[0]), 0.5*(Y[1]-Y[0]),… in drawArc() 222 …B2DPolygon poly = tools::createPolygonFromRect(rect, (width != 0.0) ? ovalW/width : 0.0, (height !… in drawRoundRectangle() 254 B2DPolygon poly; in drawPolygon()
|