Added Quaternion constructors, SetFrom(AxisAngle)
Some checks failed
Build Docs With Doxygen / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
2024-04-25 16:02:32 -04:00
parent 5b356d9d6e
commit 4b3fe2b9e2
4 changed files with 52 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ namespace J3ML::LinearAlgebra
/// Transitional datatype, not useful for internal representation of rotation
/// But has uses for conversion and manipulation.
class AxisAngle {
public:
Vector3 axis;
float angle;
public: