Calculate angle - Node.js Geometry

Node.js examples for Geometry:Angle

Description

Calculate angle

Demo Code


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;
};

Related Tutorials