├── .gitignore ├── README.md └── src ├── BBox.h ├── MathUtility.h ├── Matrix3x3.h ├── Matrix4x4.h ├── Quaternion.h ├── Transform.h ├── Vector2.h └── Vector3.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1n0st/AyaMath/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1n0st/AyaMath/HEAD/README.md -------------------------------------------------------------------------------- /src/BBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1n0st/AyaMath/HEAD/src/BBox.h -------------------------------------------------------------------------------- /src/MathUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1n0st/AyaMath/HEAD/src/MathUtility.h -------------------------------------------------------------------------------- /src/Matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1n0st/AyaMath/HEAD/src/Matrix3x3.h -------------------------------------------------------------------------------- /src/Matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1n0st/AyaMath/HEAD/src/Matrix4x4.h -------------------------------------------------------------------------------- /src/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1n0st/AyaMath/HEAD/src/Quaternion.h -------------------------------------------------------------------------------- /src/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1n0st/AyaMath/HEAD/src/Transform.h -------------------------------------------------------------------------------- /src/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1n0st/AyaMath/HEAD/src/Vector2.h -------------------------------------------------------------------------------- /src/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1n0st/AyaMath/HEAD/src/Vector3.h --------------------------------------------------------------------------------