blurValue method
Implementation
double blurValue() {
switch (this.blurType) {
case BlurType.BIG:
return 38.0;
case BlurType.MID:
return 15.0;
case BlurType.MIN:
return 2.0;
case BlurType.LOW:
return 5.0;
case BlurType.MAX:
return 10.0;
case BlurType.ZERO:
return 0.0;
default:
return 10.0;
}
}