Searched refs:fRadiusY (Results 1 – 4 of 4) sorted by relevance
/trunk/main/basegfx/source/polygon/ |
H A D | b2dpolygontools.cxx | 1688 const double fRadiusY(rRect.getHeight() / 2.0); in createPolygonFromRect() local 1690 return createPolygonFromEllipse( aCenter, fRadiusX, fRadiusY ); in createPolygonFromRect() 1699 … B2DPolygon createPolygonFromRect( const B2DRectangle& rRect, double fRadiusX, double fRadiusY ) in createPolygonFromRect() argument 1714 if(fTools::less(fRadiusY, fZero)) in createPolygonFromRect() 1716 fRadiusY = fZero; in createPolygonFromRect() 1718 else if(fTools::more(fRadiusY, fOne)) in createPolygonFromRect() 1720 fRadiusY = fOne; in createPolygonFromRect() 1723 if(fZero == fRadiusX || fZero == fRadiusY) in createPolygonFromRect() 1745 else if(fOne == fRadiusX && fOne == fRadiusY) in createPolygonFromRect() 1758 const double fBowY((rRect.getHeight() / 2.0) * fRadiusY); in createPolygonFromRect() [all …]
|
/trunk/main/basegfx/inc/basegfx/polygon/ |
H A D | b2dpolygontools.hxx | 267 …IC B2DPolygon createPolygonFromRect( const B2DRectangle& rRect, double fRadiusX, double fRadiusY ); 321 …C B2DPolygon createPolygonFromEllipse( const B2DPoint& rCenter, double fRadiusX, double fRadiusY ); 325 …gonFromEllipseSegment( const B2DPoint& rCenter, double fRadiusX, double fRadiusY, double fStart, d…
|
/trunk/main/vcl/source/gdi/ |
H A D | gdimetafiletools.cxx | 553 … double fRadiusY((nVer * 2.0) / (aRange.getHeight() > 0.0 ? aRange.getHeight() : 1.0)); in clipMetafileContentAgainstOwnRegions() local 555 fRadiusY = std::max(0.0, std::min(1.0, fRadiusY)); in clipMetafileContentAgainstOwnRegions() 557 … aOutline = basegfx::tools::createPolygonFromRect(aRange, fRadiusX, fRadiusY); in clipMetafileContentAgainstOwnRegions()
|
/trunk/main/drawinglayer/source/primitive2d/ |
H A D | metafileprimitive2d.cxx | 1821 double fRadiusY((nVer * 2.0) / (aRange.getHeight() > 0.0 ? aRange.getHeight() : 1.0)); in interpretMetafile() local 1823 fRadiusY = std::max(0.0, std::min(1.0, fRadiusY)); in interpretMetafile() 1825 aOutline = basegfx::tools::createPolygonFromRect(aRange, fRadiusX, fRadiusY); in interpretMetafile()
|
Completed in 85 milliseconds