Converting Angle Measurements

  • Uploaded by: SRINIVASA RAO GANTA
  • 0
  • 0
  • May 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Converting Angle Measurements as PDF for free.

More details

  • Words: 54
  • Pages: 1
Record 15: Converting Angle Measurements function degToRad(deg) { return (Math.PI*deg)/180; } function radToDeg(rad) { return (rad*180)/Math.PI; } trace("Converting 90 degrees to radians:"+degToRad(90)); trace("Converting 3.14 radians to degrees:"+radToDeg(Math.PI)); trace("Converting 36 degrees to radians using cos function:"+Math.cos(degToRad(36))); --------------------------------------------------------------------------------output -------------------------------------------------------------------------------Converting 90 degrees to radians:1.5707963267949 Converting 3.14 radians to degrees:180 Converting 36 degrees to radians using cos function:0.809016994374947

Related Documents

Angle
November 2019 30
Measurements
May 2020 16
Converting Rates
July 2020 7
Mesure-angle
April 2020 9

More Documents from "Jean-Philippe Solanet-Moulin"