From 4078d353b2300d584e72c4aee1fd2c500e3d763e Mon Sep 17 00:00:00 2001 From: Paul Mach Date: Thu, 16 Jan 2014 12:06:54 -0800 Subject: [PATCH] Bump threshold for Orthogonalize to 12 degrees --- js/id/actions/orthogonalize.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/id/actions/orthogonalize.js b/js/id/actions/orthogonalize.js index 91a9797bd..7a13885a5 100644 --- a/js/id/actions/orthogonalize.js +++ b/js/id/actions/orthogonalize.js @@ -3,7 +3,7 @@ */ iD.actions.Orthogonalize = function(wayId, projection) { - var threshold = 7, // degrees within right or straight to alter + var threshold = 12, // degrees within right or straight to alter lowerThreshold = Math.cos((90 - threshold) * Math.PI / 180), upperThreshold = Math.cos(threshold * Math.PI / 180);