acuasi / ground-control-station

UAS Ground Station
12 stars 6 forks source link

round the speed to nearest decimal (integer) #11

Open rayjanwilson opened 11 years ago

rayjanwilson commented 11 years ago

need a utility function placed somewhere

  function roundTo(num, places) {
    places = places || 2;
    return parseFloat(num.toFixed(places));
  }