Skip to content

Instantly share code, notes, and snippets.

View go-dockly's full-sized avatar
🦜

go-dockly go-dockly

🦜
  • 14:50 (UTC +02: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,