starting on snippets folder keeping track of my thoughts since i lost my

thing
This commit is contained in:
2024-06-15 21:21:08 +02:00
parent a5f5e757ef
commit dc3c76bd1f
3 changed files with 17 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
vec2 rotate(vec2 st, float a) {
return mat2(cos(a),-sin(a),sin(a),cos(a))*(st);
}