Lines Matching refs:rPolygon

57 …aphicsPathReal(Gdiplus::GraphicsPath& rPath, const basegfx::B2DPolygon& rPolygon, bool bNoLineJoin)  in impAddB2DPolygonToGDIPlusGraphicsPathReal()  argument
59 sal_uInt32 nCount(rPolygon.count()); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
63 const sal_uInt32 nEdgeCount(rPolygon.isClosed() ? nCount : nCount - 1); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
64 const bool bControls(rPolygon.areControlPointsUsed()); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
65 basegfx::B2DPoint aCurr(rPolygon.getB2DPoint(0)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
71 const basegfx::B2DPoint aNext(rPolygon.getB2DPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
74 …if(bControls && (rPolygon.isNextControlPointUsed(a) || rPolygon.isPrevControlPointUsed(nNextIndex)… in impAddB2DPolygonToGDIPlusGraphicsPathReal()
76 const basegfx::B2DPoint aCa(rPolygon.getNextControlPoint(a)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
77 const basegfx::B2DPoint aCb(rPolygon.getPrevControlPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
103 …icsPathInteger(Gdiplus::GraphicsPath& rPath, const basegfx::B2DPolygon& rPolygon, bool bNoLineJoin) in impAddB2DPolygonToGDIPlusGraphicsPathInteger() argument
105 sal_uInt32 nCount(rPolygon.count()); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
109 const sal_uInt32 nEdgeCount(rPolygon.isClosed() ? nCount : nCount - 1); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
110 const bool bControls(rPolygon.areControlPointsUsed()); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
111 basegfx::B2DPoint aCurr(rPolygon.getB2DPoint(0)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
117 const basegfx::B2DPoint aNext(rPolygon.getB2DPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
120 …if(bControls && (rPolygon.isNextControlPointUsed(a) || rPolygon.isPrevControlPointUsed(nNextIndex)… in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
122 const basegfx::B2DPoint aCa(rPolygon.getNextControlPoint(a)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
123 const basegfx::B2DPoint aCb(rPolygon.getPrevControlPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
215 const basegfx::B2DPolygon& rPolygon, in drawPolyLine() argument
221 const sal_uInt32 nCount(rPolygon.count()); in drawPolyLine()
285 impAddB2DPolygonToGDIPlusGraphicsPathInteger(aPath, rPolygon, bNoLineJoin); in drawPolyLine()
289 impAddB2DPolygonToGDIPlusGraphicsPathReal(aPath, rPolygon, bNoLineJoin); in drawPolyLine()
292 if(rPolygon.isClosed() && !bNoLineJoin) in drawPolyLine()