blob: 3012b50f01e8235e7ceab8ead28e8c8c25b98cdf [file] [log] [blame]
// enum Interpolation
/// Nearest interopolation.
const int NEAREST = 0;
/// Linear interpolation.
const int LINEAR = 1;
/// Cubic interpolation.
const int CUBIC = 2;
/// Averaging interpolation
const int AVERAGE = 3;