Searched refs:fAx (Results 1 – 2 of 2) sorted by relevance
81 double lcl_IterateInverse( const ScDistFunc& rFunction, double fAx, double fBx, bool& rConvError ) in lcl_IterateInverse() argument87 DBG_ASSERT(fAx<fBx, "IterateInverse: wrong interval"); in lcl_IterateInverse()91 double fAy = rFunction.GetValue(fAx); in lcl_IterateInverse()99 fTemp = fAx; in lcl_IterateInverse()100 fAx += 2.0 * (fAx - fBx); in lcl_IterateInverse()101 if (fAx < 0.0) in lcl_IterateInverse()102 fAx = 0.0; in lcl_IterateInverse()105 fAy = rFunction.GetValue(fAx); in lcl_IterateInverse()110 fBx += 2.0 * (fBx - fAx); in lcl_IterateInverse()111 fAx = fTemp; in lcl_IterateInverse()[all …]
67 const double fAx = maEnd.X() - maStart.X(); in Intersection() local71 const double fDen = fAy * fBx - fAx * fBy; in Intersection()93 const double fB = fAx * fCy - fAy * fCx; in Intersection()107 rIntersectionX = ( maStart.X() + fAlpha * fAx ); in Intersection()