Home
last modified time | relevance | path

Searched refs:fB (Results 1 – 11 of 11) sorted by path

/trunk/main/basegfx/source/curve/
H A Db2dcubicbezier.cxx1050 …const double fB = (maControlPointB.getX() - 2 * maControlPointA.getX() + maStartPoint.getX()) * aR… in getMaxDistancePositions() local
1059 if( fTools::equalZero(fB) ) in getMaxDistancePositions()
1063 pResult[0] = -fC / (2*fB); in getMaxDistancePositions()
1072 const double fD = fB*fB - fA*fC; in getMaxDistancePositions()
1077 const double fQ = -(fB + ((fB >= 0) ? +fS : -fS)); in getMaxDistancePositions()
/trunk/main/filter/source/graphicfilter/icgm/
H A Dclass4.cxx382 double fB = aIntermediatePoint.Y - aStartingPoint.Y; in ImplDoClass4() local
386 …double fE = fA * ( aStartingPoint.X + aIntermediatePoint.X ) + fB * ( aStartingPoint.Y + aIntermed… in ImplDoClass4()
389 …double fG = 2.0 * ( fA * ( aEndingPoint.Y - aIntermediatePoint.Y ) - fB * ( aEndingPoint.X - aInte… in ImplDoClass4()
391 aCenterPoint.X = ( fD * fE - fB * fF ) / fG; in ImplDoClass4()
456 double fB = aIntermediatePoint.Y - aStartingPoint.Y; in ImplDoClass4() local
460 …double fE = fA * ( aStartingPoint.X + aIntermediatePoint.X ) + fB * ( aStartingPoint.Y + aIntermed… in ImplDoClass4()
463 …double fG = 2.0 * ( fA * ( aEndingPoint.Y - aIntermediatePoint.Y ) - fB * ( aEndingPoint.X - aInte… in ImplDoClass4()
465 aCenterPoint.X = ( fD * fE - fB * fF ) / fG; in ImplDoClass4()
/trunk/main/filter/source/msfilter/
H A Dmsdffimp.cxx1209 double fB = 1.0; in ApplyRectangularGradientAsBitmap() local
1223 if ( aIter->fDist <= fB ) in ApplyRectangularGradientAsBitmap()
1225 fB = aIter->fDist; in ApplyRectangularGradientAsBitmap()
1232 double fD1 = fB - fA; in ApplyRectangularGradientAsBitmap()
/trunk/main/oox/source/drawingml/
H A Dcolor.cxx545 double fR = 0.0, fG = 0.0, fB = 0.0; in toRgb() local
548 fR = fG = fB = static_cast< double >( mnC3 ) / MAX_PERCENT; in toRgb()
556 else if( fHue <= 3.0 ) { fG = 1.0; fB = fHue - 2.0; } // green...cyan in toRgb()
557 else if( fHue <= 4.0 ) { fG = 4.0 - fHue; fB = 1.0; } // cyan...blue in toRgb()
565 fB = (fB - 0.5) * fSat + 0.5; in toRgb()
574 fB *= fShade; in toRgb()
581 fB = 1.0 - ((1.0 - fB) * fTint); in toRgb()
586 mnC3 = static_cast< sal_Int32 >( fB * 255.0 + 0.5 ); in toRgb()
627 double fB = static_cast< double >( mnC3 ) / 255.0; // blue [0.0, 1.0] in toHsl() local
628 double fMin = ::std::min( ::std::min( fR, fG ), fB ); in toHsl()
[all …]
/trunk/main/sal/qa/rtl_strings/
H A Drtl_OString.cxx2854 float fB = arrTestCase[i].expVal; in test_rtl_OString_toFloat() local
2856 float fResult = (float) fabs(fA - fB); in test_rtl_OString_toFloat()
2858 t_print("float result: A:(%E) B:(%E) fabs(A-B):%E\n", fA, fB, (float) fResult); in test_rtl_OString_toFloat()
/trunk/main/sc/source/core/inc/
H A Dinterpre.hxx741 double GetBetaDistPDF(double fX, double fA, double fB); //probability density function)
/trunk/main/sc/source/core/tool/
H A Dinterpr3.cxx837 double fB; in GetBeta() local
847 return GetGamma(fA)/GetGamma(fA+fB)*GetGamma(fB); in GetBeta()
870 double fB; in GetLogBeta() local
901 if (fB == 1.0) in GetBetaDistPDF()
911 return fB + fB * ::boost::math::expm1((fB-1.0) * ::boost::math::log1p(-fX)); in GetBetaDistPDF()
913 return fB * pow(0.5-fX+0.5,fB-1.0); in GetBetaDistPDF()
960 return pow(fX,fA-1.0) * pow(0.5-fX+0.5,fB-1.0) / GetBeta(fA,fB); in GetBetaDistPDF()
1046 fB = fAlpha; in GetBetaDist()
1055 double fQ = fB/(fA+fB); in GetBetaDist()
1060 fTemp = exp(fA*flnX + fB*flnY - GetLogBeta(fA,fB)); in GetBetaDist()
[all …]
/trunk/main/svgio/source/svgreader/
H A Dsvgtools.cxx907 double fB(0.0); in read_color() local
916 if(readNumber(rCandidate, nPos, fB, nLen)) in read_color()
922 rColor.setBlue(fB * fFac); in read_color()
/trunk/main/tools/inc/tools/
H A Db3dtrans.hxx174 …void SetDeviceRectangle(double fL=-1.0, double fR=1.0, double fB=-1.0, double fT=1.0, sal_Bool bBr…
176 void GetDeviceRectangle(double &fL, double &fR, double& fB, double& fT);
182 void SetBackClippingPlane(double fB=1.0);
/trunk/main/tools/source/generic/
H A Db3dtrans.cxx434 void B3dTransformationSet::SetDeviceRectangle(double fL, double fR, double fB, double fT, in SetDeviceRectangle() argument
437 if(fL != mfLeftBound || fR != mfRightBound || fB != mfBottomBound || fT != mfTopBound) in SetDeviceRectangle()
441 mfBottomBound = fB; in SetDeviceRectangle()
465 void B3dTransformationSet::GetDeviceRectangle(double &fL, double &fR, double& fB, double& fT) in GetDeviceRectangle() argument
469 fB = mfBottomBound; in GetDeviceRectangle()
498 void B3dTransformationSet::SetBackClippingPlane(double fB) in SetBackClippingPlane() argument
500 if(mfFarBound != fB) in SetBackClippingPlane()
502 mfFarBound = fB; in SetBackClippingPlane()
H A Dline.cxx93 const double fB = fAx * fCy - fAy * fCx; in Intersection() local
97 if ( ( fB < 0. ) || ( fB > fDen ) ) in Intersection()
100 else if ( ( fB > 0. ) || ( fB < fDen ) ) in Intersection()

Completed in 116 milliseconds