Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <style>
    input[type=text]{ width:150px } 
  </style>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
  <script>
      /* 
      * jQuery repeatedclick v1.0.5 
      * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
      * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
      * Written by: Alexandr Zykov <alexandrz@gmail.com>
      */
      if (typeof(jQuery) != "undefined")
      jQuery.fn.hold = function(h,j){var c=jQuery.extend({duration:350,speed:0.85,min:50},j);"undefined"===typeof jQuery.repeatedEvents&&(jQuery.repeatedEvents=[]);jQuery.repeatedEvents.push(h);var k=jQuery.repeatedEvents.length-1,d,e;return this.each(function(){d=function(f,b,a){var g=this;jQuery.repeatedEvents[f].call(g,a);e=setTimeout(function(){d.call(g,f,b>c.min?b*c.speed:b,a)},b)};jQuery(this).mousedown(function(a){d.call(this,k,c.duration,a)});var a=function(){"undefined"!==typeof e&&clearInterval(e)};jQuery(this).mouseout(a);jQuery(this).mouseup(a)})};
    </script>  
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <fieldset>
  <legend>Get angle of Point</legend>
    x: <input type="text" id="x" value="">
<button id="xminus">x -</button>
<button id="xplus">x +</button>
    <br>
    y: <input type="text" id="y" value="">
<button id="yminus">y -</button>
<button id="yplus">y +</button>
<br>
<input type="radio" name="function" value="dia" checked onChange="$('#x').change()"> DiamondAngle(y, x)
<br>
<input type="radio" name="function" value="rad" onChange="$('#x').change()"> Math.atan2(y, x)
  </fieldset>
  <fieldset>
  <legend>Radians, Diamonds, Degrees</legend>
  Rad: <input type="text" id="rad" value="0">  
  <span id="radNorm">0</span>
  <span id="radNorm2">0</span>
<br>
  Dia: <input type="text" id="dia" value="0">
<span id="diaNorm">0</span>
  <br>
  Deg: <input type="text" id="deg" value="0">
<span id="degNorm">0</span>
<span id="degNorm2">0</span>
  <br>
  <button id="minus" >Degree -</button>
  <button id="plus">Degree +</button>
  </fieldset>
<div id="cont">
<svg id="svg" width="200" height="200">
</svg>
</div>
You can safely use diamond angels for angle comparisons for performance reasons, because bigger euqlidean angles are bigger also in taxicab space, but... 
<p>
... the idea to calculate radians or degrees by using ratio <b>MaxDiamondAngle/DiamondAngle</b> (MaxDiamondAngle is 4.0) to convert from taxicab space to euqlidean space (radians or degrees) is not possible in every case. From diamond angles 0, 0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0 the ratio based conversion is reliable and generates the degrees 0, 45, 90, 135, 180, 225, 270, 315, 360. All other diamond angles generate a bit different euqlidean angles because of the different unit "circle" (=square) in taxicab space.
<p>
The values in the last column in Radians, Diamonds, Degrees fieldset are calculated using ratio <b>MaxDiamondAngle/DiamondAngle</b> to derive radians and degrees.
  </body>
</html>
 
#svg{
background-color:rgba(220,240,220,1);
margin-top:10px;
}
text{
fill:#777777;
font-size:12px;
opacity:0.5;
}
fieldset,legend,div,input,button
{
font-family:monospace;
white-space:nowrap;
font-size:12px;
}
input[type=text]{
width:134px;
}
span{
display:inline-block;
padding-left:2px;
width:134px;
background-color:white;
}
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers