/trunk/main/svgio/source/svgreader/ |
H A D | svgsvgnode.cxx | 493 double fW = 0.0; // effective value depends on viewBox in decomposeSvgNode() local 518 fW =getWidth().solveNonPercentage(*this); in decomposeSvgNode() 523 fW = getWidth().solveNonPercentage(*this); in decomposeSvgNode() 524 fH = fW * fViewBoxWidth / fViewBoxHeight ; in decomposeSvgNode() 529 fW = fH * fViewBoxWidth / fViewBoxHeight ; in decomposeSvgNode() 533 fW = fViewBoxWidth; in decomposeSvgNode() 567 fW =getWidth().solveNonPercentage(*this); in decomposeSvgNode() 583 aSvgCanvasRange = basegfx::B2DRange(0.0, 0.0, fW, fH); in decomposeSvgNode() 697 return basegfx::B2DRange(fX, fY, fX+fW, fY+fH); in getCurrentViewPort() 740 return basegfx::B2DRange(fX, fY, fX+fW, fY+fH); in getCurrentViewPort() [all …]
|
H A D | svgstyleattributes.cxx | 533 double fW(0.0); in add_fillPattern() local 536 rFillPattern.getValuesRelative(fX, fY, fW, fH, rGeoRange, mrOwner); in add_fillPattern() 538 if(fW > 0.0 && fH > 0.0) in add_fillPattern() 541 const basegfx::B2DRange aReferenceRange(fX, fY, fX + fW, fY + fH); in add_fillPattern() 572 … aMapPrimitivesToUnitRange.scale(1.0 / (fW * fTargetWidth), 1.0 / (fH * fTargetHeight)); in add_fillPattern() 576 aMapPrimitivesToUnitRange.scale(1.0 / fW, 1.0 / fH); in add_fillPattern()
|
H A D | svgmasknode.cxx | 231 …const double fW(Unit_percent == getWidth().getUnit() ? getWidth().getNumber() * 0.01 : getWidth().… in apply() local 237 aContentRange.getMinX() + ((fX + fW) * fContentWidth), in apply()
|
H A D | svgtools.cxx | 979 double fW(aWidth.solve(rInfoProvider,xcoordinate)); in readViewBox() local 981 return basegfx::B2DRange(fX,fY,fX+fW,fY+fH); in readViewBox()
|
/trunk/main/filter/source/graphicfilter/idxf/ |
H A D | dxf2mtf.cxx | 541 double fW; in DrawPolyLineEntity() local 552 fW=0.0; in DrawPolyLineEntity() 557 if (((DXFVertexEntity*)pBE)->fSWidth>=0.0) fW+=((DXFVertexEntity*)pBE)->fSWidth; in DrawPolyLineEntity() 558 else fW+=rE.fSWidth; in DrawPolyLineEntity() 560 else fW+=rE.fEWidth; in DrawPolyLineEntity() 564 fW/=2.0; in DrawPolyLineEntity() 565 if ((rE.nFlags&1)!=0) fW/=(double)nPolySize; in DrawPolyLineEntity() 566 else fW/=(double)(nPolySize-1); in DrawPolyLineEntity() 567 if (SetLineAttribute(rE,rTransform.TransLineWidth(fW))) { in DrawPolyLineEntity() 597 double fW = rE.fConstantWidth; in DrawLWPolyLineEntity() local [all …]
|
H A D | dxfvec.cxx | 229 sal_uLong DXFTransform::TransLineWidth(double fW) const in TransLineWidth() 237 return (sal_uLong)(fabs(fW)*(fex+fey)/2.0+0.5); in TransLineWidth()
|
H A D | dxfvec.hxx | 153 sal_uLong TransLineWidth(double fW) const;
|
/trunk/main/svx/source/engine3d/ |
H A D | view3d.cxx | 911 double fW = (double)aRect.GetWidth(); in ConvertMarkedObjTo3D() local 913 fDepth = sqrt(fW*fW + fH*fH) / 6.0; in ConvertMarkedObjTo3D() 1397 double fW(aVolume.getWidth()); in SetCurrent3DObj() local 1400 Rectangle aRect(0,0, (long) fW, (long) fH); in SetCurrent3DObj() 1404 InitScene(pScene, fW, fH, aVolume.getMaxZ() + ((fW + fH) / 4.0)); in SetCurrent3DObj() 1418 void E3dView::InitScene(E3dScene* pScene, double fW, double fH, double fCamZ) in InitScene() argument 1423 aCam.SetViewWindow(- fW / 2, - fH / 2, fW, fH); in InitScene() 1857 double fW = aAllBoundRect.GetWidth(); in MergeScenes() local 1859 Rectangle aRect(0,0, (long) fW, (long) fH); in MergeScenes() 1861 InitScene(pScene, fW, fH, aBoundVol.getMaxZ() + + ((fW + fH) / 4.0)); in MergeScenes()
|
H A D | viewpt3d2.cxx | 61 void Viewport3D::SetViewWindow(double fX, double fY, double fW, double fH) in SetViewWindow() argument 65 if ( fW > 0 ) aViewWin.W = fW; in SetViewWindow()
|
H A D | camera3d.cxx | 98 void Camera3D::SetViewWindow(double fX, double fY, double fW, double fH) in SetViewWindow() argument 100 Viewport3D::SetViewWindow(fX, fY, fW, fH); in SetViewWindow()
|
/trunk/main/chart2/source/view/diagram/ |
H A D | VDiagram.cxx | 346 double fW = rAvailableSize.Width; in adjustAspectRatio3d() local 365 if( !::basegfx::fTools::equalZero(fW) ) in adjustAspectRatio3d() 367 fScaleY = (fH/fW)*(sy*fScaleZ+fScaleX)-(sx*fScaleZ); in adjustAspectRatio3d() 378 fScaleX = (fW/fH)*(sx*fScaleZ+fScaleY)-(sy*fScaleZ); in adjustAspectRatio3d() 406 double fDivide = fH*sz-fW*cz; in adjustAspectRatio3d() 409 fScaleY = fScaleX*(fW*sz-fH*cz) / fDivide; in adjustAspectRatio3d() 433 double fDivide = fW*sz-fH*cz; in adjustAspectRatio3d() 436 fScaleX = fScaleY*(fH*sz-fW*cz) / fDivide; in adjustAspectRatio3d()
|
/trunk/main/svx/source/dialog/ |
H A D | dlgctl3d.cxx | 115 double fW = rVolume.getWidth(); in Construct() local 117 double fCamZ = rVolume.getMaxZ() + ((fW + fH) / 2.0); in Construct() 120 rCamera.SetViewWindow(- fW / 2, - fH / 2, fW, fH); in Construct() 383 double fW = rVolume.getWidth(); in Construct2() local 385 double fCamZ = rVolume.getMaxZ() + ((fW + fH) / 2.0); in Construct2() 388 rCamera.SetViewWindow(- fW / 2, - fH / 2, fW, fH); in Construct2()
|
/trunk/main/sd/source/ui/func/ |
H A D | fucon3d.cxx | 458 double fW(aVolume.getWidth()); in CreateDefaultObject() local 460 Rectangle a3DRect(0, 0, (long)fW, (long)fH); in CreateDefaultObject() 465 double fCamZ(aVolume.getMaxZ() + ((fW + fH) / 4.0)); in CreateDefaultObject() 468 aCam.SetViewWindow(- fW / 2, - fH / 2, fW, fH); in CreateDefaultObject()
|
/trunk/main/svx/source/unodraw/ |
H A D | unopage.cxx | 597 double fW = (double)aSize.Width; in _CreateSdrObject() local 602 aCam.SetViewWindow(- fW / 2, - fH / 2, fW, fH); in _CreateSdrObject()
|
H A D | unoshap3.cxx | 384 double fW = rVolume.getWidth(); in setPropertyValueImpl() local 394 aCam.SetViewWindow(- fW / 2, - fH / 2, fW, fH); in setPropertyValueImpl() 400 aCam.SetDeviceWindow(Rectangle(0, 0, (long)fW, (long)fH)); in setPropertyValueImpl()
|
/trunk/main/svx/source/customshapes/ |
H A D | EnhancedCustomShape3d.cxx | 611 double fW = rVolume.getWidth(); in Create3DObject() local 615 rCamera.SetViewWindow( -fW / 2, - fH / 2, fW, fH); in Create3DObject()
|
/trunk/main/svx/inc/svx/ |
H A D | camera3d.hxx | 62 void SetViewWindow(double fX, double fY, double fW, double fH);
|
H A D | viewpt3d.hxx | 111 void SetViewWindow(double fX, double fY, double fW, double fH);
|
H A D | view3d.hxx | 82 void InitScene(E3dScene* pScene, double fW, double fH, double fCamZ);
|
/trunk/main/xmloff/inc/ |
H A D | xexptran.hxx | 125 SdXMLImExViewBox(double fX = 0.0, double fY = 0.0, double fW = 1000.0, double fH = 1000.0);
|
/trunk/main/xmloff/source/draw/ |
H A D | xexptran.cxx | 1284 SdXMLImExViewBox::SdXMLImExViewBox(double fX, double fY, double fW, double fH) in SdXMLImExViewBox() argument 1287 mfW( fW ), in SdXMLImExViewBox()
|
/trunk/main/sc/source/core/tool/ |
H A D | interpr3.cxx | 3906 double fP, fW; in ScProbability() local 3913 fW = pMatW->GetDouble(i); in ScProbability() 3919 if (fW >= fLo && fW <= fUp) in ScProbability()
|
/trunk/main/vcl/source/gdi/ |
H A D | pdfwriter_impl.cxx | 7450 double fW = (double)m_aCurrentPDFState.m_aFont.GetHeight() / 30.0; in drawLayout() local 7451 m_aPages.back().appendMappedLength( fW, aLine ); in drawLayout()
|