├── .gitignore ├── LICENSE ├── README.md └── Sources ├── CSharpIDW.Test ├── CSharpIDW.Test.csproj └── IdwInterpolatorTests.cs ├── CSharpIDW.sln └── CSharpIDW ├── CSharpIDW.csproj ├── CSharpIDW.nuspec ├── IdwInterpolator.cs ├── InterpolationResult.cs └── Point.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argonavis80/CSharp-IDW/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argonavis80/CSharp-IDW/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argonavis80/CSharp-IDW/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CSharpIDW.Test/CSharpIDW.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argonavis80/CSharp-IDW/HEAD/Sources/CSharpIDW.Test/CSharpIDW.Test.csproj -------------------------------------------------------------------------------- /Sources/CSharpIDW.Test/IdwInterpolatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argonavis80/CSharp-IDW/HEAD/Sources/CSharpIDW.Test/IdwInterpolatorTests.cs -------------------------------------------------------------------------------- /Sources/CSharpIDW.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argonavis80/CSharp-IDW/HEAD/Sources/CSharpIDW.sln -------------------------------------------------------------------------------- /Sources/CSharpIDW/CSharpIDW.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argonavis80/CSharp-IDW/HEAD/Sources/CSharpIDW/CSharpIDW.csproj -------------------------------------------------------------------------------- /Sources/CSharpIDW/CSharpIDW.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argonavis80/CSharp-IDW/HEAD/Sources/CSharpIDW/CSharpIDW.nuspec -------------------------------------------------------------------------------- /Sources/CSharpIDW/IdwInterpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argonavis80/CSharp-IDW/HEAD/Sources/CSharpIDW/IdwInterpolator.cs -------------------------------------------------------------------------------- /Sources/CSharpIDW/InterpolationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argonavis80/CSharp-IDW/HEAD/Sources/CSharpIDW/InterpolationResult.cs -------------------------------------------------------------------------------- /Sources/CSharpIDW/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argonavis80/CSharp-IDW/HEAD/Sources/CSharpIDW/Point.cs --------------------------------------------------------------------------------