Skip to content

Instantly share code, notes, and snippets.

View go-dockly's full-sized avatar
🦜

go-dockly go-dockly

🦜
  • 07:10 (UTC +01:00)
View GitHub Profile
@jakubtomsu
jakubtomsu / ease.odin
Last active February 7, 2025 23:13
Easings library ported to Odin
package ease
// Adapted from functions here: https://github.com/warrenm/AHEasing/blob/master/AHEasing/easing.c
// For previews go here: https://easings.net/
import "core:math"
Mode :: enum {
linear = 0,
quad_in,