Lines Matching refs:pPtAry

184 sal_Bool SalGraphics::mirror( sal_uInt32 nPoints, const SalPoint *pPtAry, SalPoint *pPtAry2, const …  in mirror()  argument
209 pPtAry2[j].mnX = pOutDevRef->GetOutOffXPixel() + (pPtAry[i].mnX - devX); in mirror()
210 pPtAry2[j].mnY = pPtAry[i].mnY; in mirror()
219 pPtAry2[j].mnX = devX + (pPtAry[i].mnX - pOutDevRef->GetOutOffXPixel()); in mirror()
220 pPtAry2[j].mnY = pPtAry[i].mnY; in mirror()
233 …pPtAry2[j].mnX = pPtAry[i].mnX - pOutDevRef->GetOutputWidthPixel() + devX - pOutDevRef->GetOutOffX… in mirror()
234 pPtAry2[j].mnY = pPtAry[i].mnY; in mirror()
243 …pPtAry2[j].mnX = pOutDevRef->GetOutputWidthPixel() - (pPtAry[i].mnX - devX) + pOutDevRef->GetOutOf… in mirror()
244 pPtAry2[j].mnY = pPtAry[i].mnY; in mirror()
253 pPtAry2[j].mnX = w-1-pPtAry[i].mnX; in mirror()
254 pPtAry2[j].mnY = pPtAry[i].mnY; in mirror()
443 void SalGraphics::DrawPolyLine( sal_uInt32 nPoints, const SalPoint* pPtAry, const OutputDevice *pOu… in DrawPolyLine() argument
448 sal_Bool bCopied = mirror( nPoints, pPtAry, pPtAry2, pOutDev ); in DrawPolyLine()
449 drawPolyLine( nPoints, bCopied ? pPtAry2 : pPtAry ); in DrawPolyLine()
453 drawPolyLine( nPoints, pPtAry ); in DrawPolyLine()
456 void SalGraphics::DrawPolygon( sal_uInt32 nPoints, const SalPoint* pPtAry, const OutputDevice *pOut… in DrawPolygon() argument
461 sal_Bool bCopied = mirror( nPoints, pPtAry, pPtAry2, pOutDev ); in DrawPolygon()
462 drawPolygon( nPoints, bCopied ? pPtAry2 : pPtAry ); in DrawPolygon()
466 drawPolygon( nPoints, pPtAry ); in DrawPolygon()
469 …olyPolygon( sal_uInt32 nPoly, const sal_uInt32* pPoints, PCONSTSALPOINT* pPtAry, const OutputDevic… in DrawPolyPolygon() argument
480 mirror( nPoints, pPtAry[i], pPtAry2[i], pOutDev ); in DrawPolyPolygon()
490 drawPolyPolygon( nPoly, pPoints, pPtAry ); in DrawPolyPolygon()
511 sal_Bool SalGraphics::DrawPolyLineBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uIn… in DrawPolyLineBezier() argument
517 sal_Bool bCopied = mirror( nPoints, pPtAry, pPtAry2, pOutDev ); in DrawPolyLineBezier()
518 bResult = drawPolyLineBezier( nPoints, bCopied ? pPtAry2 : pPtAry, pFlgAry ); in DrawPolyLineBezier()
522 bResult = drawPolyLineBezier( nPoints, pPtAry, pFlgAry ); in DrawPolyLineBezier()
526 sal_Bool SalGraphics::DrawPolygonBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt… in DrawPolygonBezier() argument
532 sal_Bool bCopied = mirror( nPoints, pPtAry, pPtAry2, pOutDev ); in DrawPolygonBezier()
533 bResult = drawPolygonBezier( nPoints, bCopied ? pPtAry2 : pPtAry, pFlgAry ); in DrawPolygonBezier()
537 bResult = drawPolygonBezier( nPoints, pPtAry, pFlgAry ); in DrawPolygonBezier()
684 void SalGraphics::Invert( sal_uInt32 nPoints, const SalPoint* pPtAry, SalInvert nFlags, const Outpu… in Invert() argument
689 sal_Bool bCopied = mirror( nPoints, pPtAry, pPtAry2, pOutDev ); in Invert()
690 invert( nPoints, bCopied ? pPtAry2 : pPtAry, nFlags ); in Invert()
694 invert( nPoints, pPtAry, nFlags ); in Invert()