Searched refs:fRadiusX (Results 1 – 4 of 4) sorted by relevance
/trunk/main/basegfx/source/polygon/ |
H A D | b2dpolygontools.cxx | 1687 const double fRadiusX(rRect.getWidth() / 2.0); in createPolygonFromRect() local 1690 return createPolygonFromEllipse( aCenter, fRadiusX, fRadiusY ); in createPolygonFromRect() 1705 if(fTools::less(fRadiusX, fZero)) in createPolygonFromRect() 1707 fRadiusX = fZero; in createPolygonFromRect() 1709 else if(fTools::more(fRadiusX, fOne)) in createPolygonFromRect() 1711 fRadiusX = fOne; in createPolygonFromRect() 1723 if(fZero == fRadiusX || fZero == fRadiusY) in createPolygonFromRect() 1745 else if(fOne == fRadiusX && fOne == fRadiusY) in createPolygonFromRect() 1757 const double fBowX((rRect.getWidth() / 2.0) * fRadiusX); in createPolygonFromRect() 1762 if(fOne != fRadiusX) in createPolygonFromRect() [all …]
|
/trunk/main/basegfx/inc/basegfx/polygon/ |
H A D | b2dpolygontools.hxx | 267 …BASEGFX_DLLPUBLIC B2DPolygon createPolygonFromRect( const B2DRectangle& rRect, double fRadiusX, do… 321 …IC B2DPolygon createPolygonFromEllipse( const B2DPoint& rCenter, double fRadiusX, double fRadiusY … 325 …olygon createPolygonFromEllipseSegment( const B2DPoint& rCenter, double fRadiusX, double fRadiusY,…
|
/trunk/main/vcl/source/gdi/ |
H A D | gdimetafiletools.cxx | 552 … double fRadiusX((nHor * 2.0) / (aRange.getWidth() > 0.0 ? aRange.getWidth() : 1.0)); in clipMetafileContentAgainstOwnRegions() local 554 fRadiusX = std::max(0.0, std::min(1.0, fRadiusX)); in clipMetafileContentAgainstOwnRegions() 557 … aOutline = basegfx::tools::createPolygonFromRect(aRange, fRadiusX, fRadiusY); in clipMetafileContentAgainstOwnRegions()
|
/trunk/main/drawinglayer/source/primitive2d/ |
H A D | metafileprimitive2d.cxx | 1820 double fRadiusX((nHor * 2.0) / (aRange.getWidth() > 0.0 ? aRange.getWidth() : 1.0)); in interpretMetafile() local 1822 fRadiusX = std::max(0.0, std::min(1.0, fRadiusX)); in interpretMetafile() 1825 aOutline = basegfx::tools::createPolygonFromRect(aRange, fRadiusX, fRadiusY); in interpretMetafile()
|
Completed in 62 milliseconds