toMetresPerSecond static method

double toMetresPerSecond(
  1. double value
)

Converts the supplied Feet Per Second value to Metres Per Second

Implementation

static double toMetresPerSecond(double value) => value / 3.28084;