Lines Matching refs:nQuot
273 double nQuot = 2 * nDiff - nPbDiff; in _NoteFarPoint() local
274 nQuot *= nPbDiff; in _NoteFarPoint()
275 nQuot = sqrt( nQuot ); in _NoteFarPoint()
276 nQuot /= nDiff; in _NoteFarPoint()
277 nTmpA = nPa - long( nStart * nQuot ); in _NoteFarPoint()
278 nPbDiff = nPa + long( nEnd * nQuot ); in _NoteFarPoint()
647 double nQuot = nB - rPt1.X(); in Cut() local
648 nQuot /= ( rPt2.X() - rPt1.X() ); in Cut()
649 nQuot *= ( rPt2.Y() - rPt1.Y() ); in Cut()
650 return long( rPt1.Y() + nQuot ); in Cut()
652 double nQuot = nB - rPt1.Y(); in Cut() local
653 nQuot /= ( rPt2.Y() - rPt1.Y() ); in Cut()
654 nQuot *= ( rPt2.X() - rPt1.X() ); in Cut()
655 return long( rPt1.X() + nQuot ); in Cut()