Lines Matching refs:rCenter
364 inline double ImplGetAngle( const Point& rCenter, const Point& rPt ) in ImplGetAngle() argument
366 const long nDX = rPt.X() - rCenter.X(); in ImplGetAngle()
367 return( atan2( -rPt.Y() + rCenter.Y(), ( ( nDX == 0L ) ? 0.000000001 : nDX ) ) ); in ImplGetAngle()
493 Polygon::Polygon( const Point& rCenter, long nRadX, long nRadY, sal_uInt16 nPoints ) in Polygon() argument
527 pPt->X() = nX + rCenter.X(); in Polygon()
528 pPt->Y() = nY + rCenter.Y(); in Polygon()
530 pPt->X() = -nX + rCenter.X(); in Polygon()
531 pPt->Y() = nY + rCenter.Y(); in Polygon()
533 pPt->X() = -nX + rCenter.X(); in Polygon()
534 pPt->Y() = -nY + rCenter.Y(); in Polygon()
536 pPt->X() = nX + rCenter.X(); in Polygon()
537 pPt->Y() = -nY + rCenter.Y(); in Polygon()
1283 void Polygon::Rotate( const Point& rCenter, sal_uInt16 nAngle10 ) in Rotate() argument
1291 Rotate( rCenter, sin( fAngle ), cos( fAngle ) ); in Rotate()
1297 void Polygon::Rotate( const Point& rCenter, double fSin, double fCos ) in Rotate() argument
1303 long nCenterX = rCenter.X(); in Rotate()
1304 long nCenterY = rCenter.Y(); in Rotate()