zero static method

void zero(
  1. Float32x4List matrix,
  2. int offset
)

Implementation

static void zero(Float32x4List matrix, int offset) {
  final z = Float32x4.zero();
  matrix[offset++] = z;
  matrix[offset++] = z;
  matrix[offset++] = z;
  matrix[offset++] = z;
}