Skip to content

Instantly share code, notes, and snippets.

View heart-to-the-sea's full-sized avatar
😁

meta heart-to-the-sea

😁
View GitHub Profile
@akella
akella / setup.md
Last active March 1, 2026 21:51
My Setup
vec2 rotate(vec2 v, float a) {
float s = sin(a);
float c = cos(a);
mat2 m = mat2(c, s, -s, c);
return m * v;
}