v3Dot static method

double v3Dot(
  1. List<double> a,
  2. List<double> b
)

Implementation

static double v3Dot(List<double> a, List<double> b) {
  return a[0] * b[0] + a[1] * b[1] + a[2] * b[2];
}