From 66602c9cec98bd19551db4a0e3ea4844b420d92b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Fri, 6 May 2011 01:27:47 +0100 Subject: [PATCH] Remove comment about necessity to reverse coordinate system. --- src/path/Path.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/path/Path.js b/src/path/Path.js index 74935cfb..81d7ca3e 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -795,8 +795,6 @@ var Path = this.Path = PathItem.extend({ cx = (x1 + x2 - m * (y2 - y1)) / 2, cy = (y1 + y2 - m * (x1 - x2)) / 2, radius = Math.sqrt(cx * cx + cy * cy - e), - // Note: reversing the Y equations negates the angle to adjust - // for the upside down coordinate system. angle = Math.atan2(y1 - cy, x1 - cx), middle = Math.atan2(y2 - cy, x2 - cx), extent = Math.atan2(y3 - cy, x3 - cx),