Node.js examples for Geometry:Angle
Calculate angle
Tools = {};/*from ww w . j av a 2 s.c om*/ // Calculer l'angle pour un vecteur Tools.calcAngle = function (velocityX, velocityY) { var angle = Math.atan2(velocityY, velocityX); //console.log(angle); return angle; };