Home
last modified time | relevance | path

Searched refs:fAx (Results 1 – 2 of 2) sorted by relevance

/trunk/main/sc/source/core/tool/
H A Dinterpr3.cxx83 double lcl_IterateInverse( const ScDistFunc& rFunction, double fAx, double fBx, bool& rConvError ) in lcl_IterateInverse() argument
89 DBG_ASSERT(fAx<fBx, "IterateInverse: wrong interval"); in lcl_IterateInverse()
93 double fAy = rFunction.GetValue(fAx); in lcl_IterateInverse()
101 fTemp = fAx; in lcl_IterateInverse()
102 fAx += 2.0 * (fAx - fBx); in lcl_IterateInverse()
103 if (fAx < 0.0) in lcl_IterateInverse()
104 fAx = 0.0; in lcl_IterateInverse()
107 fAy = rFunction.GetValue(fAx); in lcl_IterateInverse()
112 fBx += 2.0 * (fBx - fAx); in lcl_IterateInverse()
113 fAx = fTemp; in lcl_IterateInverse()
[all …]
/trunk/main/tools/source/generic/
H A Dline.cxx67 const double fAx = maEnd.X() - maStart.X(); in Intersection() local
71 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()