package aether.effects.convolution { public class graphic_flex_image_effects_07_source_aether_effects_convolution_SharpenEffect extends ConvolutionEffect { public function graphic_flex_image_effects_07_source_aether_effects_convolution_SharpenEffect( pAmount:Number=5, blendMode:String=null, alpha:Number=1 ) { var matrix:Array = [ 0, -1, 0, -1, pAmount, -1, 0, -1, 0 ]; super(matrix, 1, 0, blendMode, alpha); } } }