ImageMagick.DoubleMatrix.GetValue C# (CSharp) Метод

GetValue() публичный Метод

Gets the value at the specified x/y position.
public GetValue ( int x, int y ) : double
x int The x position
y int The y position
Результат double
    public double GetValue(int x, int y)
    {
      return _Values[GetIndex(x, y)];
    }