Lines Matching refs:fDist

1103 	double		fDist;  member
1105 ShadeColor( const Color& rC, double fR ) : aColor( rC ), fDist( fR ) {}; in ShadeColor()
1168 double fD, fDist; in ApplyRectangularGradientAsBitmap() local
1174 fDist = fY, fD = fFocusY; in ApplyRectangularGradientAsBitmap()
1176 fDist = fX, fD = fFocusX; in ApplyRectangularGradientAsBitmap()
1181 fDist = ( 1 - fY ), fD = 1 - fFocusY; in ApplyRectangularGradientAsBitmap()
1183 fDist = fX, fD = fFocusX; in ApplyRectangularGradientAsBitmap()
1191 fDist = fY, fD = fFocusY; in ApplyRectangularGradientAsBitmap()
1193 fDist = ( 1 - fX ), fD = 1 - fFocusX; in ApplyRectangularGradientAsBitmap()
1198 fDist = ( 1 - fY ), fD = 1 - fFocusY; in ApplyRectangularGradientAsBitmap()
1200 fDist = ( 1 - fX ), fD = 1 - fFocusX; in ApplyRectangularGradientAsBitmap()
1204 fDist /= fD; in ApplyRectangularGradientAsBitmap()
1213 if ( aIter->fDist <= fDist ) in ApplyRectangularGradientAsBitmap()
1215 if ( aIter->fDist >= fA ) in ApplyRectangularGradientAsBitmap()
1217 fA = aIter->fDist; in ApplyRectangularGradientAsBitmap()
1221 if ( aIter->fDist > fDist ) in ApplyRectangularGradientAsBitmap()
1223 if ( aIter->fDist <= fB ) in ApplyRectangularGradientAsBitmap()
1225 fB = aIter->fDist; in ApplyRectangularGradientAsBitmap()
1235 …fRed += ( ( ( fDist - fA ) * ( aColorB.GetRed() - aColorA.GetRed() ) ) / fD1 ); // + aQuantErrC… in ApplyRectangularGradientAsBitmap()
1236 …fGreen += ( ( ( fDist - fA ) * ( aColorB.GetGreen() - aColorA.GetGreen() ) ) / fD1 ); // + aQuantE… in ApplyRectangularGradientAsBitmap()
1237 …fBlue += ( ( ( fDist - fA ) * ( aColorB.GetBlue() - aColorA.GetBlue() ) ) / fD1 ); // + aQuantEr… in ApplyRectangularGradientAsBitmap()