Implement V3::Direction

This commit is contained in:
2024-01-15 15:20:32 -05:00
parent 03f0193df7
commit fd2289cee3
3 changed files with 12 additions and 1 deletions

View File

@@ -213,7 +213,6 @@ namespace LinearAlgebra {
elems[0][2] = c1*a.x*a.z+s*a.y;
elems[1][2] = c1*a.y*a.z-s*a.x;
elems[2][2] = c+c1*a.z*a.z;
}
Matrix3x3 Matrix3x3::RotateAxisAngle(const Vector3 &axis, float angleRadians) {