summaryrefslogtreecommitdiffstats
path: root/chalk/core/kis_painter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/core/kis_painter.cpp')
-rw-r--r--chalk/core/kis_painter.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/chalk/core/kis_painter.cpp b/chalk/core/kis_painter.cpp
index f3f5c9286..bb41fdfc0 100644
--- a/chalk/core/kis_painter.cpp
+++ b/chalk/core/kis_painter.cpp
@@ -625,10 +625,10 @@ void KisPainter::paintEllipse (const KisPoint &startPoint,
KisRect r = KisRect(startPoint, endPoint).normalize();
// See http://www.whizkidtech.redprince.net/bezier/circle/ for explanation.
- // kappa = (4/3*(sqrt(2)-1))
- const double kappa = 0.5522847498;
- const double lx = (r.width() / 2) * kappa;
- const double ly = (r.height() / 2) * kappa;
+ // tdeAppa = (4/3*(sqrt(2)-1))
+ const double tdeAppa = 0.5522847498;
+ const double lx = (r.width() / 2) * tdeAppa;
+ const double ly = (r.height() / 2) * tdeAppa;
KisPoint center = r.center();