using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NaturalNeighbor
{
///
/// Interpolation method
///
public enum InterpolationMethod
{
///
/// Nearest Neighbor interpolation
///
Nearest = 0,
///
/// Piecewise linear interpolation
///
Linear = 1,
///
/// Natural Neighbor interpolation
///
Natural = 2,
}
}