blob: 8d20784bb933f7658f1843a1a363db1c3141dcdf [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;