Lines Matching refs:Rectangle

37 sal_Int32 Right (const awt::Rectangle& rBox)  in Right()
42 sal_Int32 Bottom (const awt::Rectangle& rBox) in Bottom()
88 awt::Rectangle PresenterGeometryHelper::ConvertRectangle ( in ConvertRectangle()
95 return awt::Rectangle (nLeft,nTop,nRight-nLeft,nBottom-nTop); in ConvertRectangle()
101 awt::Rectangle PresenterGeometryHelper::ConvertRectangleWithConstantSize ( in ConvertRectangleWithConstantSize()
104 return awt::Rectangle ( in ConvertRectangleWithConstantSize()
115 const css::awt::Rectangle& rBox) in ConvertRectangle()
127 awt::Rectangle PresenterGeometryHelper::TranslateRectangle ( in TranslateRectangle()
128 const css::awt::Rectangle& rBox, in TranslateRectangle()
132 return awt::Rectangle(rBox.X + nXOffset, rBox.Y + nYOffset, rBox.Width, rBox.Height); in TranslateRectangle()
138 awt::Rectangle PresenterGeometryHelper::Intersection ( in Intersection()
139 const css::awt::Rectangle& rBox1, in Intersection()
140 const css::awt::Rectangle& rBox2) in Intersection()
147 return awt::Rectangle(); in Intersection()
149 return awt::Rectangle(nLeft,nTop, Width(nLeft,nRight), Height(nTop,nBottom)); in Intersection()
186 const css::awt::Rectangle& rBox1, in IsInside()
187 const css::awt::Rectangle& rBox2) in IsInside()
198 awt::Rectangle PresenterGeometryHelper::Union ( in Union()
199 const css::awt::Rectangle& rBox1, in Union()
200 const css::awt::Rectangle& rBox2) in Union()
212 return awt::Rectangle(); in Union()
214 return awt::Rectangle(nLeft,nTop, Width(nLeft,nRight), Height(nTop,nBottom)); in Union()
238 const css::awt::Rectangle& rBox1, in AreRectanglesDisjoint()
239 const css::awt::Rectangle& rBox2) in AreRectanglesDisjoint()
251 const awt::Rectangle& rBox, in CreatePolygon()
301 const ::std::vector<css::awt::Rectangle>& rBoxes, in CreatePolygon()
311 const awt::Rectangle& rBox (rBoxes[nIndex]); in CreatePolygon()