Lines Matching refs:nDist
1224 void OutputDevice::ImplCalcHatchValues( const Rectangle& rRect, long nDist, sal_uInt16 nAngle10, in ImplCalcHatchValues() argument
1238 rInc = Size( 0, nDist ); in ImplCalcHatchValues()
1244 nOffset = ( ( rRect.Top() - aRef.Y() ) % nDist ); in ImplCalcHatchValues()
1246 nOffset = ( nDist - ( ( aRef.Y() - rRect.Top() ) % nDist ) ); in ImplCalcHatchValues()
1253 rInc = Size( nDist, 0 ); in ImplCalcHatchValues()
1259 nOffset = ( rRect.Left() - aRef.X() ) % nDist; in ImplCalcHatchValues()
1261 nOffset = nDist - ( ( aRef.X() - rRect.Left() ) % nDist ); in ImplCalcHatchValues()
1273 rInc = Size( 0, nDist = FRound( nDist / cos( fAngle ) ) ); in ImplCalcHatchValues()
1291 nOffset = ( rPt1.Y() - nPY ) % nDist; in ImplCalcHatchValues()
1293 nOffset = nDist - ( ( nPY - rPt1.Y() ) % nDist ); in ImplCalcHatchValues()
1305 rInc = Size( nDist = FRound( nDist / sin( fAngle ) ), 0 ); in ImplCalcHatchValues()
1323 nOffset = ( rPt1.X() - nPX ) % nDist; in ImplCalcHatchValues()
1325 nOffset = nDist - ( ( nPX - rPt1.X() ) % nDist ); in ImplCalcHatchValues()