Lines Matching refs:rPt1
1225 Point& rPt1, Point& rPt2, Size& rInc, Point& rEndPt1 ) in ImplCalcHatchValues() argument
1239 rPt1 = rRect.TopLeft(); in ImplCalcHatchValues()
1248 rPt1.Y() -= nOffset; in ImplCalcHatchValues()
1254 rPt1 = rRect.TopLeft(); in ImplCalcHatchValues()
1263 rPt1.X() -= nOffset; in ImplCalcHatchValues()
1277 rPt1 = rRect.TopLeft(); in ImplCalcHatchValues()
1280 nPY = FRound( aRef.Y() - ( ( rPt1.X() - aRef.X() ) * fTan ) ); in ImplCalcHatchValues()
1284 rPt1 = rRect.TopRight(); in ImplCalcHatchValues()
1287 nPY = FRound( aRef.Y() + ( ( rPt1.X() - aRef.X() ) * fTan ) ); in ImplCalcHatchValues()
1290 if( nPY <= rPt1.Y() ) in ImplCalcHatchValues()
1291 nOffset = ( rPt1.Y() - nPY ) % nDist; in ImplCalcHatchValues()
1293 nOffset = nDist - ( ( nPY - rPt1.Y() ) % nDist ); in ImplCalcHatchValues()
1295 rPt1.Y() -= nOffset; in ImplCalcHatchValues()
1309 rPt1 = rRect.TopLeft(); in ImplCalcHatchValues()
1312 nPX = FRound( aRef.X() - ( ( rPt1.Y() - aRef.Y() ) / fTan ) ); in ImplCalcHatchValues()
1316 rPt1 = rRect.BottomLeft(); in ImplCalcHatchValues()
1319 nPX = FRound( aRef.X() + ( ( rPt1.Y() - aRef.Y() ) / fTan ) ); in ImplCalcHatchValues()
1322 if( nPX <= rPt1.X() ) in ImplCalcHatchValues()
1323 nOffset = ( rPt1.X() - nPX ) % nDist; in ImplCalcHatchValues()
1325 nOffset = nDist - ( ( nPX - rPt1.X() ) % nDist ); in ImplCalcHatchValues()
1327 rPt1.X() -= nOffset; in ImplCalcHatchValues()