v3Length static method

double v3Length(
  1. List<double> a
)

Implementation

static double v3Length(List<double> a) {
  return sqrt(a[0] * a[0] + a[1] * a[1] + a[2] * a[2]);
}