Lines Matching refs:basegfx

59 void impAddB2DPolygonToGDIPlusGraphicsPathReal(Gdiplus::GraphicsPath& rPath, const basegfx::B2DPoly…  in impAddB2DPolygonToGDIPlusGraphicsPathReal()
67 basegfx::B2DPoint aCurr(rPolygon.getB2DPoint(0)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
73 const basegfx::B2DPoint aNext(rPolygon.getB2DPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
78 const basegfx::B2DPoint aCa(rPolygon.getNextControlPoint(a)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
79 const basegfx::B2DPoint aCb(rPolygon.getPrevControlPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathReal()
105 void impAddB2DPolygonToGDIPlusGraphicsPathInteger(Gdiplus::GraphicsPath& rPath, const basegfx::B2DP… in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
113 basegfx::B2DPoint aCurr(rPolygon.getB2DPoint(0)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
119 const basegfx::B2DPoint aNext(rPolygon.getB2DPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
124 const basegfx::B2DPoint aCa(rPolygon.getNextControlPoint(a)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
125 const basegfx::B2DPoint aCb(rPolygon.getPrevControlPoint(nNextIndex)); in impAddB2DPolygonToGDIPlusGraphicsPathInteger()
151 bool WinSalGraphics::drawPolyPolygon( const ::basegfx::B2DPolyPolygon& rPolyPolygon, double fTransp… in drawPolyPolygon()
158 const sal_uInt8 aTrans((sal_uInt8)255 - (sal_uInt8)basegfx::fround(fTransparency * 255.0)); in drawPolyPolygon()
217 const basegfx::B2DPolygon& rPolygon, in drawPolyLine()
219 const basegfx::B2DVector& rLineWidths, in drawPolyLine()
220 basegfx::B2DLineJoin eLineJoin, in drawPolyLine()
228 const sal_uInt8 aTrans = (sal_uInt8)basegfx::fround( 255 * (1.0 - fTransparency) ); in drawPolyLine()
238 if(basegfx::fTools::more(rLineWidths.getX(), 0.0)) in drawPolyLine()
244 case basegfx::B2DLINEJOIN_BEVEL : in drawPolyLine()
249 case basegfx::B2DLINEJOIN_MIDDLE : in drawPolyLine()
250 case basegfx::B2DLINEJOIN_MITER : in drawPolyLine()
257 case basegfx::B2DLINEJOIN_ROUND : in drawPolyLine()
285 if(nCount > 250 && basegfx::fTools::more(rLineWidths.getX(), 1.5)) in drawPolyLine()
448 const basegfx::B2DPoint& rNull, in drawTransformedBitmap()
449 const basegfx::B2DPoint& rX, in drawTransformedBitmap()
450 const basegfx::B2DPoint& rY, in drawTransformedBitmap()
465 const long nDestWidth(basegfx::fround(basegfx::B2DVector(rX - rNull).getLength())); in drawTransformedBitmap()
466 const long nDestHeight(basegfx::fround(basegfx::B2DVector(rY - rNull).getLength())); in drawTransformedBitmap()