Lines Matching refs:fLeft
68 void B3dTransformationSet::Frustum(basegfx::B3DHomMatrix& rTarget, double fLeft, double fRight, dou… in Frustum() argument
82 if(fLeft == fRight) in Frustum()
84 fLeft -= 1.0; in Frustum()
94 aTemp.set(0, 0, 2.0 * fNear / (fRight - fLeft)); in Frustum()
96 aTemp.set(0, 2, (fRight + fLeft) / (fRight - fLeft)); in Frustum()
106 void B3dTransformationSet::Ortho(basegfx::B3DHomMatrix& rTarget, double fLeft, double fRight, doubl… in Ortho() argument
113 if(fLeft == fRight) in Ortho()
116 fLeft -= 1.0; in Ortho()
127 aTemp.set(0, 0, 2.0 / (fRight - fLeft)); in Ortho()
130 aTemp.set(0, 3, -1.0 * ((fRight + fLeft) / (fRight - fLeft))); in Ortho()
295 double fLeft(mfLeftBound); in CalcViewport() local
324 fLeft *= fFactor; in CalcViewport()
350 fLeft *= fFactor; in CalcViewport()
359 fLeft *= fFactor; in CalcViewport()
384 …Frustum(aNewProjection, fLeft, fRight, fBottom, fTop, mfNearBound - fDistPart, mfFarBound + fDistP… in CalcViewport()
388 …Ortho(aNewProjection, fLeft, fRight, fBottom, fTop, mfNearBound - fDistPart, mfFarBound + fDistPar… in CalcViewport()