Lines Matching refs:kappa
8781 const double kappa = 0.5522847498; in drawRectangle() local
8782 const sal_uInt32 kx = (sal_uInt32)((kappa*(double)nHorzRound)+0.5); in drawRectangle()
8783 const sal_uInt32 ky = (sal_uInt32)((kappa*(double)nVertRound)+0.5); in drawRectangle()
8864 const double kappa = 0.5522847498; in drawEllipse() local
8865 const sal_uInt32 kx = (sal_uInt32)((kappa*(double)rRect.GetWidth()/2.0)+0.5); in drawEllipse()
8866 const sal_uInt32 ky = (sal_uInt32)((kappa*(double)rRect.GetHeight()/2.0)+0.5); in drawEllipse()
8956 const double kappa = fabs( 4.0 * (1.0-cos(fFragmentDelta/2.0))/sin(fFragmentDelta/2.0) / 3.0); in drawArc() local
8975 aPoint = Point( (int)(halfWidth * (cos(fStartFragment) - kappa*sin(fStartFragment) ) ), in drawArc()
8976 … -(int)(halfHeight * (sin(fStartFragment) + kappa*cos(fStartFragment) ) ) ); in drawArc()
8981 aPoint = Point( (int)(halfWidth * (cos(fStopFragment) + kappa*sin(fStopFragment) ) ), in drawArc()
8982 … -(int)(halfHeight * (sin(fStopFragment) - kappa*cos(fStopFragment) ) ) ); in drawArc()