Lines Matching refs:basegfx

60 namespace basegfx  namespace
67 …ce< geometry::RealBezierSegment2D > bezierSequenceFromB2DPolygon(const ::basegfx::B2DPolygon& rPol… in bezierSequenceFromB2DPolygon()
76 const basegfx::B2DPoint aStart(rPoly.getB2DPoint(a)); in bezierSequenceFromB2DPolygon()
77 const basegfx::B2DPoint aControlA(rPoly.getNextControlPoint(a)); in bezierSequenceFromB2DPolygon()
78 … const basegfx::B2DPoint aControlB(rPoly.getPrevControlPoint((a + 1) % nPointCount)); in bezierSequenceFromB2DPolygon()
89 …uno::Sequence< geometry::RealPoint2D > pointSequenceFromB2DPolygon( const ::basegfx::B2DPolygon& r… in pointSequenceFromB2DPolygon()
100 const ::basegfx::B2DPoint aPoint( rPoly.getB2DPoint(i) ); in pointSequenceFromB2DPolygon()
112 …ealBezierSegment2D > > bezierSequenceSequenceFromB2DPolyPolygon( const ::basegfx::B2DPolyPolygon& … in bezierSequenceSequenceFromB2DPolyPolygon()
130 …ometry::RealPoint2D > > pointSequenceSequenceFromB2DPolyPolygon( const ::basegfx::B2DPolyPolygon& … in pointSequenceSequenceFromB2DPolyPolygon()
149 … const ::basegfx::B2DPolygon& rPoly ) in xPolyPolygonFromB2DPolygon()
182 … const ::basegfx::B2DPolyPolygon& rPolyPoly ) in xPolyPolygonFromB2DPolyPolygon()
215 …::basegfx::B2DPolygon polygonFromPoint2DSequence( const uno::Sequence< geometry::RealPoint2D >& po… in polygonFromPoint2DSequence()
219 ::basegfx::B2DPolygon aPoly; in polygonFromPoint2DSequence()
229 …::basegfx::B2DPolyPolygon polyPolygonFromPoint2DSequenceSequence( const uno::Sequence< uno::Sequen… in polyPolygonFromPoint2DSequenceSequence()
231 ::basegfx::B2DPolyPolygon aRes; in polyPolygonFromPoint2DSequenceSequence()
243 …::basegfx::B2DPolygon polygonFromBezier2DSequence( const uno::Sequence< geometry::RealBezierSegmen… in polygonFromBezier2DSequence()
246 basegfx::B2DPolygon aRetval; in polygonFromBezier2DSequence()
253 aRetval.append(basegfx::B2DPoint(rFirstSegment.Px, rFirstSegment.Py)); in polygonFromBezier2DSequence()
262 basegfx::B2DPoint(rCurrSegment.C1x, rCurrSegment.C1y), in polygonFromBezier2DSequence()
263 basegfx::B2DPoint(rCurrSegment.C2x, rCurrSegment.C2y), // #i79917# Argh! An x for an y!! in polygonFromBezier2DSequence()
264 basegfx::B2DPoint(rNextSegment.Px, rNextSegment.Py)); in polygonFromBezier2DSequence()
277 …::basegfx::B2DPolyPolygon polyPolygonFromBezier2DSequenceSequence( const uno::Sequence< uno::Seque… in polyPolygonFromBezier2DSequenceSequence()
279 ::basegfx::B2DPolyPolygon aRes; in polyPolygonFromBezier2DSequenceSequence()
291 …::basegfx::B2DPolyPolygon b2DPolyPolygonFromXPolyPolygon2D( const uno::Reference< rendering::XPoly… in b2DPolyPolygonFromXPolyPolygon2D()
293 ::basegfx::unotools::UnoPolyPolygon* pPolyImpl = in b2DPolyPolygonFromXPolyPolygon2D()
294 dynamic_cast< ::basegfx::unotools::UnoPolyPolygon* >( xPoly.get() ); in b2DPolyPolygonFromXPolyPolygon2D()
312 return ::basegfx::unotools::polyPolygonFromBezier2DSequenceSequence( in b2DPolyPolygonFromXPolyPolygon2D()
336 return ::basegfx::unotools::polyPolygonFromPoint2DSequenceSequence( in b2DPolyPolygonFromXPolyPolygon2D()
347 ::basegfx::B2DHomMatrix& homMatrixFromAffineMatrix( ::basegfx::B2DHomMatrix& output, in homMatrixFromAffineMatrix()
363 ::basegfx::B2DHomMatrix homMatrixFromAffineMatrix( const geometry::AffineMatrix2D& input ) in homMatrixFromAffineMatrix()
365 ::basegfx::B2DHomMatrix output; in homMatrixFromAffineMatrix()
377 …::basegfx::B3DHomMatrix homMatrixFromAffineMatrix3D( const ::com::sun::star::geometry::AffineMatri… in homMatrixFromAffineMatrix3D()
379 ::basegfx::B3DHomMatrix output; in homMatrixFromAffineMatrix3D()
400 const ::basegfx::B2DHomMatrix& input) in affineMatrixFromHomMatrix()
414 const ::basegfx::B3DHomMatrix& input) in affineMatrixFromHomMatrix3D()
436 ::basegfx::B2DHomMatrix& homMatrixFromMatrix( ::basegfx::B2DHomMatrix& output, in homMatrixFromMatrix()
452 geometry::RealSize2D size2DFromB2DSize( const ::basegfx::B2DVector& rVec ) in size2DFromB2DSize()
458 geometry::RealPoint2D point2DFromB2DPoint( const ::basegfx::B2DPoint& rPoint ) in point2DFromB2DPoint()
464 geometry::RealRectangle2D rectangle2DFromB2DRectangle( const ::basegfx::B2DRange& rRect ) in rectangle2DFromB2DRectangle()
472 geometry::RealRectangle3D rectangle3DFromB3DRectangle( const ::basegfx::B3DRange& rRect ) in rectangle3DFromB3DRectangle()
482 ::basegfx::B2DVector b2DSizeFromRealSize2D( const geometry::RealSize2D& rSize ) in b2DSizeFromRealSize2D()
484 return ::basegfx::B2DVector( rSize.Width, in b2DSizeFromRealSize2D()
488 ::basegfx::B2DPoint b2DPointFromRealPoint2D( const geometry::RealPoint2D& rPoint ) in b2DPointFromRealPoint2D()
490 return ::basegfx::B2DPoint( rPoint.X, in b2DPointFromRealPoint2D()
494 … ::basegfx::B2DRange b2DRectangleFromRealRectangle2D( const geometry::RealRectangle2D& rRect ) in b2DRectangleFromRealRectangle2D()
496 return ::basegfx::B2DRange( rRect.X1, in b2DRectangleFromRealRectangle2D()
502 … ::basegfx::B3DRange b3DRectangleFromRealRectangle3D( const geometry::RealRectangle3D& rRect ) in b3DRectangleFromRealRectangle3D()
504 return ::basegfx::B3DRange( rRect.X1, in b3DRectangleFromRealRectangle3D()
512 geometry::IntegerSize2D integerSize2DFromB2ISize( const ::basegfx::B2IVector& rSize ) in integerSize2DFromB2ISize()
518 geometry::IntegerPoint2D integerPoint2DFromB2IPoint( const ::basegfx::B2IPoint& rPoint ) in integerPoint2DFromB2IPoint()
524 …geometry::IntegerRectangle2D integerRectangle2DFromB2IRectangle( const ::basegfx::B2IRange& rRecta… in integerRectangle2DFromB2IRectangle()
530 ::basegfx::B2IVector b2ISizeFromIntegerSize2D( const geometry::IntegerSize2D& rSize ) in b2ISizeFromIntegerSize2D()
532 return ::basegfx::B2IVector( rSize.Width, in b2ISizeFromIntegerSize2D()
536 ::basegfx::B2IPoint b2IPointFromIntegerPoint2D( const geometry::IntegerPoint2D& rPoint ) in b2IPointFromIntegerPoint2D()
538 return ::basegfx::B2IPoint( rPoint.X, in b2IPointFromIntegerPoint2D()
542 …::basegfx::B2IRange b2IRectangleFromIntegerRectangle2D( const geometry::IntegerRectangle2D& rRecta… in b2IRectangleFromIntegerRectangle2D()
544 return ::basegfx::B2IRange( rRectangle.X1, rRectangle.Y1, in b2IRectangleFromIntegerRectangle2D()
548 awt::Size awtSizeFromB2ISize( const ::basegfx::B2IVector& rVec ) in awtSizeFromB2ISize()
554 awt::Point awtPointFromB2IPoint( const ::basegfx::B2IPoint& rPoint ) in awtPointFromB2IPoint()
560 awt::Rectangle awtRectangleFromB2IRectangle( const ::basegfx::B2IRange& rRect ) in awtRectangleFromB2IRectangle()
575 ::basegfx::B2IVector b2ISizeFromAwtSize( const awt::Size& rSize ) in b2ISizeFromAwtSize()
577 return ::basegfx::B2IVector( rSize.Width, in b2ISizeFromAwtSize()
581 ::basegfx::B2IPoint b2IPointFromAwtPoint( const awt::Point& rPoint ) in b2IPointFromAwtPoint()
583 return ::basegfx::B2IPoint( rPoint.X, in b2IPointFromAwtPoint()
587 ::basegfx::B2IRange b2IRectangleFromAwtRectangle( const awt::Rectangle& rRect ) in b2IRectangleFromAwtRectangle()
589 return ::basegfx::B2IRange( rRect.X, in b2IRectangleFromAwtRectangle()
595 ::basegfx::B2IRange b2ISurroundingRangeFromB2DRange( const ::basegfx::B2DRange& rRange ) in b2ISurroundingRangeFromB2DRange()
597 return ::basegfx::B2IRange( static_cast<sal_Int32>( floor(rRange.getMinX()) ), in b2ISurroundingRangeFromB2DRange()
603 … ::basegfx::B2DRange b2DSurroundingIntegerRangeFromB2DRange( const ::basegfx::B2DRange& rRange ) in b2DSurroundingIntegerRangeFromB2DRange()
605 return ::basegfx::B2DRange( floor(rRange.getMinX()), in b2DSurroundingIntegerRangeFromB2DRange()