diff --git a/src/pixi/filters/ConvolutionFilter.js b/src/pixi/filters/ConvolutionFilter.js new file mode 100644 index 0000000..0c0e929 --- /dev/null +++ b/src/pixi/filters/ConvolutionFilter.js @@ -0,0 +1,12 @@ +/** + * The ConvolutionFilter class applies a matrix convolution filter effect. + * A convolution combines pixels in the input image with neighboring pixels to produce an image. + * A wide variety of image effects can be achieved through convolutions, including blurring, edge detection, sharpening, embossing, and beveling. + * + * @class ConvolutionFilter + * @extends AbstractFilter + * @constructor + * @param texture {Array} An array of values used for matrix transformation. + * @param width {Number} Width of the object you are transforming + * @param height {Number} Height of the object you are transforming + */