Lines Matching refs:aRect

1120 	Rectangle aRect( aTopLeft, aBottomRight );  in GetTextRect()  local
1121 aRect.Move( aLogicRect.Left(), aLogicRect.Top() ); in GetTextRect()
1122 aRect.Justify(); in GetTextRect()
1123 return aRect; in GetTextRect()
1366 Rectangle aRect( rRect ); in CreateArc() local
1372 if ( aRect.Left() > aRect.Right() ) in CreateArc()
1374 if ( aRect.Top() > aRect.Bottom() ) in CreateArc()
1378 aRect.Justify(); in CreateArc()
1387 Polygon aTempPoly( aRect, aStart, aEnd, POLY_ARC ); in CreateArc()
1622 Rectangle aRect( aP, aS ); in CreateSubPath() local
1623 if ( aRect.GetWidth() && aRect.GetHeight() ) in CreateSubPath()
1644 double fCenterX = aRect.Center().X(); in CreateSubPath()
1645 double fCenterY = aRect.Center().Y(); in CreateSubPath()
1650 …aNewB2DPolygon.append(CreateArc( aRect, Point( (sal_Int32)fx1, (sal_Int32)fy1 ), Point( (sal_Int32… in CreateSubPath()
1658 sal_Int32 nXControl = (sal_Int32)((double)aRect.GetWidth() * 0.2835 ); in CreateSubPath()
1659 sal_Int32 nYControl = (sal_Int32)((double)aRect.GetHeight() * 0.2835 ); in CreateSubPath()
1660 Point aCenter( aRect.Center() ); in CreateSubPath()
1663 aNewB2DPolygon.append(basegfx::B2DPoint(aCenter.X(), aRect.Top())); in CreateSubPath()
1667 basegfx::B2DPoint(aCenter.X() + nXControl, aRect.Top()), in CreateSubPath()
1668 basegfx::B2DPoint(aRect.Right(), aCenter.Y() - nYControl), in CreateSubPath()
1669 basegfx::B2DPoint(aRect.Right(), aCenter.Y())); in CreateSubPath()
1672 basegfx::B2DPoint(aRect.Right(), aCenter.Y() + nYControl), in CreateSubPath()
1673 basegfx::B2DPoint(aCenter.X() + nXControl, aRect.Bottom()), in CreateSubPath()
1674 basegfx::B2DPoint(aCenter.X(), aRect.Bottom())); in CreateSubPath()
1677 basegfx::B2DPoint(aCenter.X() - nXControl, aRect.Bottom()), in CreateSubPath()
1678 basegfx::B2DPoint(aRect.Left(), aCenter.Y() + nYControl), in CreateSubPath()
1679 basegfx::B2DPoint(aRect.Left(), aCenter.Y())); in CreateSubPath()
1682 basegfx::B2DPoint(aRect.Left(), aCenter.Y() - nYControl), in CreateSubPath()
1683 basegfx::B2DPoint(aCenter.X() - nXControl, aRect.Top()), in CreateSubPath()
1684 basegfx::B2DPoint(aCenter.X(), aRect.Top())); in CreateSubPath()
1724 …Rectangle aRect( GetPoint( seqCoordinates[ rSrcPt ], sal_True, sal_True ), GetPoint( seqCoordinate… in CreateSubPath() local
1725 if ( aRect.GetWidth() && aRect.GetHeight() ) in CreateSubPath()
1727 Point aCenter( aRect.Center() ); in CreateSubPath()
1730 double fRatio = (double)aRect.GetHeight() / (double)aRect.GetWidth(); in CreateSubPath()
1735 aNewB2DPolygon.append(CreateArc( aRect, aStart, aEnd, bClockwise)); in CreateSubPath()