Skip to content

Instantly share code, notes, and snippets.

View eadgyo's full-sized avatar
🎯
Focusing

eadgyo eadgyo

🎯
Focusing
View GitHub Profile
@eadgyo
eadgyo / Matrix3x3.cs
Last active March 14, 2021 17:04 — forked from anyuser/Matrix3x3.cs
2D Transformation matrices for use in Unity
using UnityEngine;
public struct Matrix3x3
{
// m#row#col
public float m00;
public float m01;
public float m02;
public float m10;
public float m11;