summaryrefslogtreecommitdiff
path: root/tools/source
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source')
-rw-r--r--tools/source/generic/poly.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/source/generic/poly.cxx b/tools/source/generic/poly.cxx
index 7c5eca59d4c0..8be16bbd5ebd 100644
--- a/tools/source/generic/poly.cxx
+++ b/tools/source/generic/poly.cxx
@@ -180,7 +180,7 @@ ImplPolygon::ImplPolygon( const Point& rCenter, tools::Long nRadX, tools::Long n
if (!bOverflow)
{
nPoints = static_cast<sal_uInt16>(MinMax(
- ( F_PI * ( 1.5 * ( nRadX + nRadY ) -
+ ( M_PI * ( 1.5 * ( nRadX + nRadY ) -
sqrt( static_cast<double>(std::abs(nRadXY)) ) ) ),
32, 256 ));
}
@@ -200,7 +200,7 @@ ImplPolygon::ImplPolygon( const Point& rCenter, tools::Long nRadX, tools::Long n
sal_uInt16 nPoints2 = nPoints >> 1;
sal_uInt16 nPoints4 = nPoints >> 2;
double nAngle;
- double nAngleStep = F_PI2 / ( nPoints4 - 1 );
+ double nAngleStep = M_PI_2 / ( nPoints4 - 1 );
for( i=0, nAngle = 0.0; i < nPoints4; i++, nAngle += nAngleStep )
{
@@ -246,7 +246,7 @@ ImplPolygon::ImplPolygon( const tools::Rectangle& rBound, const Point& rStart, c
if (!bOverflow)
{
nPoints = static_cast<sal_uInt16>(MinMax(
- ( F_PI * ( 1.5 * ( nRadX + nRadY ) -
+ ( M_PI * ( 1.5 * ( nRadX + nRadY ) -
sqrt( static_cast<double>(std::abs(nRadXY)) ) ) ),
32, 256 ));
}