Lines Matching refs:aPolyPieRect

4705 							Rectangle aPolyPieRect( aXPoly.GetBoundRect() );  in ImportShape()  local
4718 if ( aPolyBoundRect.GetWidth() && aPolyPieRect.GetWidth() ) in ImportShape()
4720 fXScale = (double)aLogicRect.GetWidth() / (double)aPolyPieRect.GetWidth(); in ImportShape()
4722 fXOfs = ( (double)aPolyPieRect.Right() - (double)aPolyBoundRect.Right() ) * fXScale; in ImportShape()
4724 fXOfs = ( (double)aPolyBoundRect.Left() - (double)aPolyPieRect.Left() ) * fXScale; in ImportShape()
4726 if ( aPolyBoundRect.GetHeight() && aPolyPieRect.GetHeight() ) in ImportShape()
4728 fYScale = (double)aLogicRect.GetHeight() / (double)aPolyPieRect.GetHeight(); in ImportShape()
4730 fYOfs = ( (double)aPolyPieRect.Bottom() - (double)aPolyBoundRect.Bottom() ) * fYScale; in ImportShape()
4732 fYOfs = ((double)aPolyBoundRect.Top() - (double)aPolyPieRect.Top() ) * fYScale; in ImportShape()
4735 fXScale = (double)aPolyBoundRect.GetWidth() / (double)aPolyPieRect.GetWidth(); in ImportShape()
4736 fYScale = (double)aPolyBoundRect.GetHeight() / (double)aPolyPieRect.GetHeight(); in ImportShape()
4745 …sal_Int32 nLeft = (sal_Int32)(( aPolyPieRect.Left() - aPolyBoundRect.Left() ) * fTextFrameScaleX… in ImportShape()
4746 …sal_Int32 nTop = (sal_Int32)(( aPolyPieRect.Top() - aPolyBoundRect.Top() ) * fTextFrameScaleY… in ImportShape()
4747 …sal_Int32 nRight = (sal_Int32)(( aPolyPieRect.Right() - aPolyBoundRect.Left() ) * fTextFrameScaleX… in ImportShape()
4748 …sal_Int32 nBottom= (sal_Int32)(( aPolyPieRect.Bottom()- aPolyBoundRect.Top() ) * fTextFrameScaleY… in ImportShape()