ImageMagick.DoubleMatrix.SetValue C# (CSharp) Method

SetValue() public method

Set the value at the specified x/y position.
public SetValue ( int x, int y, double value ) : void
x int The x position
y int The y position
value double The value
return void
    public void SetValue(int x, int y, double value)
    {
      _Values[GetIndex(x, y)] = value;
    }