Skip to content

Instantly share code, notes, and snippets.

View iliachry's full-sized avatar
🏠
Working from home

Ilias Chrysovergis iliachry

🏠
Working from home
View GitHub Profile
@dreikanter
dreikanter / Interpolator.cs
Last active August 13, 2025 14:52
Spline interpolation in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
namespace Interpolation
{
/// <summary>
/// Spline interpolation class.