Lines Matching refs:rPoly
566 void CalcDistances( const Polygon& rPoly, std::vector< double >& rDistances ) in CalcDistances() argument
568 sal_uInt16 i, nCount = rPoly.GetSize(); in CalcDistances()
573 double fDistance = i ? ((Polygon&)rPoly).CalcDistance( i, i - 1 ) : 0.0; in CalcDistances()
588 …y*/, const std::vector< double >& rDistances, const Rectangle& rTextAreaBoundRect, Polygon& rPoly ) in InsertMissingOutlinePoints() argument
592 for ( i = 0; i < rPoly.GetSize(); i++ ) in InsertMissingOutlinePoints()
594 Point& rPoint = rPoly[ i ]; in InsertMissingOutlinePoints()
603 Point& rPt0 = rPoly[ i - 1 ]; in InsertMissingOutlinePoints()
607 … rPoly.Insert( i, Point( (sal_Int32)( rPt0.X() + fX * fd ), (sal_Int32)( rPt0.Y() + fY * fd ) ) ); in InsertMissingOutlinePoints()
618 Point& rPt0 = rPoly[ i - 1 ]; in InsertMissingOutlinePoints()
622 … rPoly.Insert( i, Point( (sal_Int32)( rPt0.X() + fX * fd ), (sal_Int32)( rPt0.Y() + fY * fd ) ) ); in InsertMissingOutlinePoints()
632 void GetPoint( const Polygon& rPoly, const std::vector< double >& rDistances, const double& fX, dou… in GetPoint() argument
635 if ( rPoly.GetSize() ) in GetPoint()
641 const Point& rPt = rPoly[ nIdx ]; in GetPoint()
649 const Point& rPt2 = rPoly[ nIdx - 1 ]; in GetPoint()