Skip to content

Instantly share code, notes, and snippets.

View SametHope's full-sized avatar
💭
Debuging his life.

SametHope SametHope

💭
Debuging his life.
View GitHub Profile
@SametHope
SametHope / EasingFunctions.cs
Last active August 4, 2023 23:02 — forked from Kryzarel/EasingFunctions.cs
C# Easing Functions
using System;
// This fork doesn't have any code logic changes from the original which is https://gist.github.com/Kryzarel/bba64622057f21a1d6d44879f9cd7bd4.
// I basically added method bodies for the methods that didn't have those and organized all methods into regions.
// I was also going to add XML documentation for each method but then decided not to. Someone feel free to do that lol.
/// <summary>
/// A static class containing easing functions for interpolation.
/// <para>Also see https://easings.net/ and https://gist.github.com/Kryzarel/bba64622057f21a1d6d44879f9cd7bd4</para>
/// </summary>