Lines Matching refs:nPoints
344 void SvpSalGraphics::drawPolyLine( sal_uInt32 nPoints, const SalPoint* pPtAry ) in drawPolyLine() argument
346 if( m_bUseLineColor && nPoints ) in drawPolyLine()
349 aPoly.append( B2DPoint( pPtAry->mnX, pPtAry->mnY ), nPoints ); in drawPolyLine()
350 for( sal_uLong i = 1; i < nPoints; i++ ) in drawPolyLine()
358 void SvpSalGraphics::drawPolygon( sal_uInt32 nPoints, const SalPoint* pPtAry ) in drawPolygon() argument
360 if( ( m_bUseLineColor || m_bUseFillColor ) && nPoints ) in drawPolygon()
363 aPoly.append( B2DPoint( pPtAry->mnX, pPtAry->mnY ), nPoints ); in drawPolygon()
364 for( sal_uLong i = 1; i < nPoints; i++ ) in drawPolygon()
389 sal_uInt32 nPoints = pPointCounts[nPolygon]; in drawPolyPolygon() local
390 if( nPoints ) in drawPolyPolygon()
394 aPoly.append( B2DPoint( pPoints->mnX, pPoints->mnY ), nPoints ); in drawPolyPolygon()
395 for( sal_uInt32 i = 1; i < nPoints; i++ ) in drawPolyPolygon()
577 void SvpSalGraphics::invert( sal_uInt32 nPoints, const SalPoint* pPtAry, SalInvert /*nFlags*/ ) in invert() argument
581 aPoly.append( B2DPoint( pPtAry->mnX, pPtAry->mnY ), nPoints ); in invert()
582 for( sal_uLong i = 1; i < nPoints; i++ ) in invert()