zero method

Sets all SH coefficients to 0.

Implementation

SphericalHarmonics3 zero() {
  for (int i = 0; i < 9; i++) {
    coefficients[i].setValues(0, 0, 0);
  }

  return this;
}