length function

double length(
  1. List<double> a
)

Calculates the length of a vec2

@param {ReadonlyVec2} a vector to calculate length of @returns {Number} length of a

Implementation

double length(List<double> a) {
  final x = a[0], y = a[1];
  return hypot([x, y]);
}