]> git.sesse.net Git - tcxmerge/commitdiff
Fix a problem with the normals.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 17 Sep 2012 11:39:07 +0000 (13:39 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 17 Sep 2012 11:39:07 +0000 (13:39 +0200)
opt.cc

diff --git a/opt.cc b/opt.cc
index bb318a4729e142cef336280798aa9e0fdfda4ac1..87b632e62e7ac5fd042abe9c0ff1ae9988273417 100644 (file)
--- a/opt.cc
+++ b/opt.cc
@@ -93,8 +93,8 @@ BSPTreeNode* make_bsp_tree(const vector<int>& remaining_roads)
                const LineSegment& ls = roads[remaining_roads[i]];
 
                // find the normal
                const LineSegment& ls = roads[remaining_roads[i]];
 
                // find the normal
-               double a = -(ls.to.x - ls.from.x);
-               double b =  ls.to.y - ls.from.y;
+               double a =   ls.to.y - ls.from.y;
+               double b = -(ls.to.x - ls.from.x);
                double invlen = 1.0 / hypot(a, b);
                a *= invlen, b *= invlen;
 
                double invlen = 1.0 / hypot(a, b);
                a *= invlen, b *= invlen;