Get Angle Degrees - Node.js Geometry

Node.js examples for Geometry:Radian

Description

Get Angle Degrees

Demo Code


function getAngleDegrees ( angle )
{
  return ( 180 * x ) / Math.PI;
}

Related Tutorials