Skip to content

Instantly share code, notes, and snippets.

View MaYiLagann's full-sized avatar
☄️
on station and at your service.

Sangmin Lee MaYiLagann

☄️
on station and at your service.
  • SZ Code Lab
  • Seoul - Korea
  • 13:41 (UTC +09:00)
View GitHub Profile
@steelywing
steelywing / SerializableDictionary.cs
Last active May 21, 2023 07:18
C# SerializableDictionary
using System;
using System.Collections.Generic;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
/// <summary>
/// Base on https://weblogs.asp.net/pwelter34/444961
/// </summary>
/// <typeparam name="TKey"></typeparam>
@Kryzarel
Kryzarel / EasingFunctions.cs
Last active September 20, 2024 22:23
C# Easing Functions
using System;
namespace Kryz.Tweening
{
// Made with the help of this great post: https://joshondesign.com/2013/03/01/improvedEasingEquations
// --------------------------------- Other Related Links --------------------------------------------------------------------
// Original equations, bad formulation: https://github.com/danro/jquery-easing/blob/master/jquery.easing.js
// A few equations, very simplified: https://gist.github.com/gre/1650294
// Easings.net equations, simplified: https://github.com/ai/easings.net/blob/master/src/easings/easingsFunctions.ts