set method
Implementation
SphericalHarmonics3 set(List<Vector3> coefficients) {
for (var i = 0; i < 9; i++) {
this.coefficients[i].copy(coefficients[i]);
}
return this;
}
SphericalHarmonics3 set(List<Vector3> coefficients) {
for (var i = 0; i < 9; i++) {
this.coefficients[i].copy(coefficients[i]);
}
return this;
}