Lines Matching refs:rPolygon

59 …aphicsPathReal(Gdiplus::GraphicsPath& rPath, const basegfx::B2DPolygon& rPolygon, bool bNoLineJoin)  in impAddB2DPolygonToGDIPlusGraphicsPathReal()  argument
61 sal_uInt32 nCount(rPolygon.count()); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
65 const sal_uInt32 nEdgeCount(rPolygon.isClosed() ? nCount : nCount - 1); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
66 const bool bControls(rPolygon.areControlPointsUsed()); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
67 basegfx::B2DPoint aCurr(rPolygon.getB2DPoint(0)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
73 const basegfx::B2DPoint aNext(rPolygon.getB2DPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
76 …if(bControls && (rPolygon.isNextControlPointUsed(a) || rPolygon.isPrevControlPointUsed(nNextIndex)… in impAddB2DPolygonToGDIPlusGraphicsPathReal()
78 const basegfx::B2DPoint aCa(rPolygon.getNextControlPoint(a)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
79 const basegfx::B2DPoint aCb(rPolygon.getPrevControlPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
105 …icsPathInteger(Gdiplus::GraphicsPath& rPath, const basegfx::B2DPolygon& rPolygon, bool bNoLineJoin) in impAddB2DPolygonToGDIPlusGraphicsPathInteger() argument
107 sal_uInt32 nCount(rPolygon.count()); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
111 const sal_uInt32 nEdgeCount(rPolygon.isClosed() ? nCount : nCount - 1); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
112 const bool bControls(rPolygon.areControlPointsUsed()); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
113 basegfx::B2DPoint aCurr(rPolygon.getB2DPoint(0)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
119 const basegfx::B2DPoint aNext(rPolygon.getB2DPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
122 …if(bControls && (rPolygon.isNextControlPointUsed(a) || rPolygon.isPrevControlPointUsed(nNextIndex)… in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
124 const basegfx::B2DPoint aCa(rPolygon.getNextControlPoint(a)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
125 const basegfx::B2DPoint aCb(rPolygon.getPrevControlPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
217 const basegfx::B2DPolygon& rPolygon, in drawPolyLine() argument
223 const sal_uInt32 nCount(rPolygon.count()); in drawPolyLine()
287 impAddB2DPolygonToGDIPlusGraphicsPathInteger(aPath, rPolygon, bNoLineJoin); in drawPolyLine()
291 impAddB2DPolygonToGDIPlusGraphicsPathReal(aPath, rPolygon, bNoLineJoin); in drawPolyLine()
294 if(rPolygon.isClosed() && !bNoLineJoin) in drawPolyLine()