ActionScript 2.0 Language Reference |
|
|
|
| ActionScript classes > ConvolutionFilter (flash.filters.ConvolutionFilter) > matrixX (ConvolutionFilter.matrixX property) | |||
public matrixX : Number
The x dimension of the matrix (the number of columns in the matrix). The default value is 0.
Availability: ActionScript 1.0; Flash Player 8
The following example displays the matrixX property of filter.
import flash.filters.ConvolutionFilter; var filter:ConvolutionFilter = new ConvolutionFilter(2, 3, [1, 0, 0, 1, 0, 0], 6); trace(filter.matrixX); // 2
|
|
|
|