Lines Matching refs:aRef
1227 Point aRef; in ImplCalcHatchValues() local
1234 aRef = ( !IsRefPoint() ? rRect.TopLeft() : GetRefPoint() ); in ImplCalcHatchValues()
1243 if( aRef.Y() <= rRect.Top() ) in ImplCalcHatchValues()
1244 nOffset = ( ( rRect.Top() - aRef.Y() ) % nDist ); in ImplCalcHatchValues()
1246 nOffset = ( nDist - ( ( aRef.Y() - rRect.Top() ) % nDist ) ); in ImplCalcHatchValues()
1258 if( aRef.X() <= rRect.Left() ) in ImplCalcHatchValues()
1259 nOffset = ( rRect.Left() - aRef.X() ) % nDist; in ImplCalcHatchValues()
1261 nOffset = nDist - ( ( aRef.X() - rRect.Left() ) % nDist ); in ImplCalcHatchValues()
1280 nPY = FRound( aRef.Y() - ( ( rPt1.X() - aRef.X() ) * fTan ) ); in ImplCalcHatchValues()
1287 nPY = FRound( aRef.Y() + ( ( rPt1.X() - aRef.X() ) * fTan ) ); in ImplCalcHatchValues()
1312 nPX = FRound( aRef.X() - ( ( rPt1.Y() - aRef.Y() ) / fTan ) ); in ImplCalcHatchValues()
1319 nPX = FRound( aRef.X() + ( ( rPt1.Y() - aRef.Y() ) / fTan ) ); in ImplCalcHatchValues()